Warn and Close stale issues and pull requests #107
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: Warn and Close stale issues and pull requests | |
on: | |
schedule: | |
- cron: '30 5 * * *' | |
jobs: | |
warn_and_close_stails: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-issue-stale: 90 | |
days-before-pr-stale: 45 | |
days-before-issue-close: 7 | |
days-before-pr-close: 7 | |
stale-issue-message: 'This issue has not been updated in the past 90 days.' | |
stale-pr-message: 'This pull request has not been updated in the past 45 days.' | |
close-issue-message: 'This issue is now being closed after stale warnings.' | |
close-pr-message: 'This pull request is now being closed after stale warnings.' | |
only-issue-labels: 'Failed_AutoCherryPick' | |
remove-stale-when-updated: true |