Issue/Pull Request Handling #1344
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: Issue/Pull Request Handling | |
on: | |
schedule: | |
- cron: '00 20 * * *' | |
jobs: | |
stale: | |
name: Flag and close stale issues | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
stale-issue-message: 'This issue has been automatically marked as stale because it has been open for 60 days with no activity. It will be closed in 10 days if no further activity occurs.' | |
stale-issue-label: 'stale' | |
stale-pr-label: 'stale' | |
days-before-stale: 60 | |
days-before-close: 10 | |
only-labels: 'information required' |