Close stale issues and PRs by externals #647
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 and PRs by externals' | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
only-labels: 'awaiting-reply' | |
days-before-stale: 30 | |
days-before-close: 7 | |
exempt-all-assignees: true | |
exempt-draft-pr: true | |
stale-issue-message: 'Stale issue: awaiting OPs reply for 30 days' | |
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.' | |
stale-issue-label: 'stale' | |
stale-pr-message: 'Stale PR: awaiting OPs reply for 30 days' | |
close-pr-message: 'This issue was closed because it has been stalled for 7 days with no activity.' | |
stale-pr-label: 'stale' |