.github/workflows/stale.yml #54
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 */12 * * *" | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
stale-issue-message: 'This issue has been automatically marked as stale because it is has a state of "Awaiting Reply" but no reply has been received within 7 days. It will be closed within 3 days if it is not updated with a reply.' | |
close-issue-message: 'This issue has been automatically closed because due to lack of response.' | |
days-before-stale: 7 | |
days-before-close: 3 | |
days-before-pr-close: -1 | |
stale-issue-label: 'Stale :skull:' | |
only-issue-labels: 'Awaiting Reply :hourglass:' | |
operations-per-run: 100 |