-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Add label after PR approved | ||
|
||
on: | ||
pull_request_review: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
label-after-approved: | ||
if: github.event.review.state == 'approved' && !contains(github.event.pull_request.labels.*.name, 'extended-tests') | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- name: Add label | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
NUMBER: ${{ github.event.pull_request.number }} | ||
run: | | ||
echo "Adding label 'extended-tests' to PR $NUMBER" | ||
gh pr edit "$NUMBER" --add-label "extended-tests" || (echo "Failed to add label" && exit 1) |
24 changes: 0 additions & 24 deletions
24
.github/workflows/add-label-run-extended-tests-approve.yml
This file was deleted.
Oops, something went wrong.