Close inactive issues and PRs #104
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 inactive issues and PRs | |
on: | |
schedule: | |
- cron: '37 21 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue has had no new activity in the last few weeks. As a result this issue is now considered stale unless new activity is added.' | |
stale-pr-message: 'This PR has had no new activity in the last few weeks. As a result this PR is now considered stale unless new activity is added.' | |
stale-issue-label: 'stale' | |
stale-pr-label: 'stale' | |
days-before-close: 60 |