From f2c4e2bfeab3a39aaf434e08b485931a64091e98 Mon Sep 17 00:00:00 2001 From: Gulshan Singh Date: Mon, 13 May 2024 06:42:29 -0700 Subject: [PATCH] Add pending-author-response workflow (#2140) --- .github/workflows/pending-author-response.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/pending-author-response.yml diff --git a/.github/workflows/pending-author-response.yml b/.github/workflows/pending-author-response.yml new file mode 100644 index 000000000..32636974b --- /dev/null +++ b/.github/workflows/pending-author-response.yml @@ -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