Mark stale issues and pull requests #452
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
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. | |
# | |
# You can adjust the behavior by modifying this file. | |
# For more information, see: | |
# https://github.com/actions/stale | |
name: Mark stale issues and pull requests | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '33 15 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v5 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-issue-stale: 90 | |
days-before-issue-close: 7 | |
stale-issue-message: 'This issue is stale because it has been open for 90 days with no activity. Remove stale label or comment to keep this active.' | |
close-issue-message: 'It has been a while and we are closing this for now. Please reopen if this is still an issue' | |
stale-issue-label: 'no-issue-activity' | |
close-issue-label: 'no-issue-activity-auto-closed' | |
days-before-pr-stale: 90 | |
days-befor-pr-close: -1 # If set to a negative number like -1, the pull requests will never be closed automatically. | |
stale-pr-message: 'This PR is stale because it has been open for 90 days with no activity.' | |
close-pr-message: 'It has been a while and we are closing this for now' | |
stale-pr-label: 'no-pr-activity' | |
close-pr-label: 'no-pr-activity-auto-closed' |