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.
1 parent 365f499 commit c7b49a3Copy full SHA for c7b49a3
.github/workflows/remove-waiting-response.yml
@@ -0,0 +1,21 @@
1
+name: Remove waiting-response label
2
+
3
+on: [issue_comment]
4
5
+jobs:
6
+ remove_label:
7
+ if: github.actor != 'cyrilgdn'
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ issues: write
11
+ pull-requests: write
12
+ steps:
13
+ - uses: actions/github-script@v6
14
+ with:
15
+ script: |
16
+ github.rest.issues.removeLabel({
17
+ issue_number: context.issue.number,
18
+ owner: context.repo.owner,
19
+ repo: context.repo.repo,
20
+ name: ["waiting-response"]
21
+ })
0 commit comments