Skip to content

Commit

Permalink
ci(workflows): close inactionable issues after 14 days
Browse files Browse the repository at this point in the history
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
  • Loading branch information
unicornware committed Aug 13, 2022
1 parent 3d86d98 commit 55aa7ba
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/no-response-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,26 @@
name: no-response-handler
on:
issue_comment:
types: [created]
types:
- created
schedule:
# schedule for five minutes after the hour, every hour
- cron: '5 * * * *'
permissions:
issues: write
jobs:
close-issues:
handler:
runs-on: ubuntu-latest
steps:
- id: close
name: Close issues after 7 days
name: Close issues after 14 days
uses: lee-dohm/no-response@v0.5.0
with:
closeComment: >
This issue has been automatically closed because there has been no response to our
request for more information from the original author. With only the information that is
currently available, there isn't enough information to take action. Please reach out if
you have or find the answers needed so next steps, if any, can be determined.
daysUntilClose: 7
daysUntilClose: 14
responseRequiredLabel: status:awaiting-answers
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 55aa7ba

Please sign in to comment.