mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-03 10:35:34 +08:00
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:
14
.github/workflows/approved-label.yml
vendored
Normal file
14
.github/workflows/approved-label.yml
vendored
Normal 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: ""
|
||||
Reference in New Issue
Block a user