Close stale issues and PRs #490
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: 'Close stale issues and PRs' | |
on: | |
schedule: | |
- cron: '0 12 * * *' | |
jobs: | |
close-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
days-before-issue-stale: 14 | |
# days-before-issue-close: 7 | |
days-before-issue-close: -1 | |
days-before-pr-stale: 14 | |
days-before-pr-close: -1 | |
stale-issue-label: 'no-issue-activity' | |
exempt-issue-labels: 'no-issue-activity,wontfix' | |
stale-pr-label: 'no-pr-activity' | |
exempt-pr-labels: 'no-pr-activity,wontfix' | |
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity." | |
# close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale." | |
stale-pr-message: 'This pull request is stale because there is no activity for 14 days' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |