Close stale issues and PRs #609
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' | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 8 * * 4,0' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
exempt-issue-labels: 'hacktoberfest,good first issue' | |
exempt-all-milestones: true | |
stale-issue-message: | | |
This issue has been marked as stale because it has required additional | |
info or a response from the author for over 14 days. When you get the | |
chance, please comment with the additional info requested. | |
Otherwise, this issue will be closed in 28 days. | |
close-issue-message: | | |
This issue has been closed because it has received no activity for | |
28 days. | |
stale-issue-label: 'stale 🍞' | |
stale-pr-label: 'stale 🍞' | |
days-before-stale: 14 | |
days-before-close: 28 | |
debug-only: false |