Mark stale issues and automatically close them #1185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mark stale issues and automatically close them | |
on: | |
schedule: | |
- cron: '00 23 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v4 # https://github.com/actions/stale | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue becomed stale because of no feedback for 30 days. Remove the stale label or add a comment; otherwise, this will be automatically closed in 60 days.' | |
stale-pr-message: 'This PR becomed stale because of no feedback for 60 days.' | |
days-before-stale: 30 | |
days-before-close: 60 | |
close-issue-message: 'This issue was closed because it has been stalled for 60 days with no activity.' | |
days-before-pr-close: -1 | |
any-of-labels: answered,needs-rebase,inactive,Awaiting-Response,question,invalid,duplicate,wontfix | |
exempt-all-pr-assignees: true |