Skip to content

Commit

Permalink
Add pending-author-response workflow (#2140)
Browse files Browse the repository at this point in the history
  • Loading branch information
gsingh93 committed May 13, 2024
1 parent b8fbb74 commit f2c4e2b
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 f2c4e2b

Please sign in to comment.