Skip to content

Commit

Permalink
Wizard automation: check for response on "info needed" issue & close (#…
Browse files Browse the repository at this point in the history
…4294)

* Add action that checks for responses on info needed and closes after 14 days

Signed-off-by: Merel Theisen <merel.theisen@quantumblack.com>
  • Loading branch information
merelcht authored Nov 6, 2024
1 parent f1dec36 commit 826021d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/no-response.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: No Response

on:
issue_comment:
types: [created]
schedule:
# Schedule for five minutes after the hour, every hour
- cron: '5 * * * *'

jobs:
noResponse:
runs-on: ubuntu-latest
steps:
- uses: lee-dohm/no-response@v0.5.0
with:
token: ${{ github.token }}
responseRequiredLabel: "support: needs more info"
daysUntilClose: 14
closeComment: >-
This issue has been closed due to lack of information. Feel free to re-open this issue if you're facing a similar problem. Please provide as much information as possible so we can help resolve your issue.

0 comments on commit 826021d

Please sign in to comment.