We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aceaebb commit 9ecc3f4Copy full SHA for 9ecc3f4
.github/workflows/issue-pending-response.yml
@@ -0,0 +1,14 @@
1
+name: issue-pending-response
2
+on:
3
+ issue_comment:
4
+ types: [created]
5
+
6
+jobs:
7
+ issue_commented:
8
+ if: ${{ !github.event.issue.pull_request && contains(github.event.issue.labels.*.name, 'pending-response') }}
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: siegerts/pending-author-response@v1
12
+ with:
13
+ github-token: ${{ secrets.GITHUB_TOKEN }}
14
+ pending-response-label: pending-response
0 commit comments