Close stale issues #302
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: "Close stale issues" | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: {} | |
jobs: | |
stale: | |
permissions: | |
issues: write # to close stale issues (actions/stale) | |
pull-requests: write # to close stale PRs (actions/stale) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue is marked stale. It will be closed in 30 days if it is not updated.' | |
stale-pr-message: 'This pull request is marked stale. It will be closed in 30 days if it is not updated.' | |
days-before-stale: 365 | |
days-before-close: 30 | |
stale-issue-label: "stale" | |
stale-pr-label: "stale" | |
operations-per-run: 10 | |
remove-stale-when-updated: false |