Setup auto-close for stale issues

This commit is contained in:
Naveen 2024-01-20 02:02:11 +05:30
parent 4f3e23faf3
commit 2d051daa15
No known key found for this signature in database
GPG key ID: 0E155DAD31671DA3

25
.github/workflows/no-response.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: no-response
# Both `issue_comment` and `scheduled` event types are required for this Action
# to work properly.
on:
issue_comment:
types: [created]
schedule:
# Run daily at midnight.
- cron: '0 0 * * *'
permissions:
issues: write
pull-requests: write
jobs:
noResponse:
runs-on: ubuntu-latest
steps:
- uses: lee-dohm/no-response@v0.5.0
with:
token: ${{ github.token }}
# Number of days of inactivity before an issue is closed for lack of response.
daysUntilClose: 30
responseRequiredLabel: waiting for author