Manage stale backtrace reports #1438
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: 'Manage stale backtrace reports' | |
on: | |
schedule: | |
- cron: '0 * * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
if: github.repository == 'OpenRCT2/OpenRCT2' | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
days-before-issue-stale: 60 | |
days-before-issue-close: 1 | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 | |
only-issue-labels: 'backtrace.io' | |
stale-issue-label: 'stale-backtrace' | |
stale-issue-message: 'This issue is stale and will be closed tomorrow if no action is taken. To keep it open, leave a comment or remove the `stale-backtrace` label.' | |
close-issue-message: 'This issue was closed due to inactivity.' | |
operations-per-run: 200 |