We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c828870 + 69a581d commit 880f321Copy full SHA for 880f321
.github/workflows/label-remove-outdated.yml
@@ -8,6 +8,7 @@ on:
8
pull_request_target:
9
types:
10
- closed
11
+ - review_requested
12
13
jobs:
14
on-issue-close:
@@ -27,6 +28,19 @@ jobs:
27
28
Status: needs investigation
29
Status: triage
30
31
+ on-pr-review-request:
32
+ runs-on: ubuntu-latest
33
+ if: github.repository_owner == 'PHPCSStandards' && github.event.action == 'review_requested'
34
+
35
+ name: "Clean up labels on PR (re-)review request"
36
37
+ steps:
38
+ - uses: mondeja/remove-labels-gh-action@v2
39
+ with:
40
+ token: ${{ secrets.GITHUB_TOKEN }}
41
+ labels: |
42
+ Status: awaiting feedback
43
44
on-pr-merge:
45
runs-on: ubuntu-latest
46
if: github.repository_owner == 'PHPCSStandards' && github.event.pull_request.merged == true
0 commit comments