feat: Add the Approved Label workflow (#830)

When a pull request is approved, it'll automatically add the `approved` label.
This commit is contained in:
David Leal 2021-05-18 13:03:38 -05:00 committed by GitHub
parent fb778074c7
commit 373f9c4a66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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: ""