feat: Add the Approved Label workflow (#1493)

When a pull request is approved, it'll automatically add the `approved` label.
This commit is contained in:
David Leal
2021-05-10 10:28:23 -05:00
committed by GitHub
parent a5022c53f2
commit fed98e8640

14
.github/workflows/approved-label.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
on: pull_request_review
name: Add "approved" label when approved
jobs:
add_label:
name: Add "approved" label when approved
runs-on: ubuntu-latest
steps:
- name: Add "approved" label when approved
uses: pullreminders/label-when-approved-action@master
env:
APPROVALS: "1"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ADD_LABEL: "approved"
REMOVE_LABEL: ""