Skip to content

Commit

Permalink
Add pending-author-response workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gsingh93 committed Apr 28, 2024
1 parent 8e64192 commit 9a7ed44
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pending-author-response.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Pending Author Response Label
on:
issue_comment:
types: [created]

jobs:
issue_commented:
if: ${{ !github.event.issue.pull_request && contains(github.event.issue.labels.*.name, 'pending-response') }}
runs-on: ubuntu-latest
steps:
- uses: siegerts/pending-author-response@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
pending-response-label: pending-response

0 comments on commit 9a7ed44

Please sign in to comment.