Close Stale Issues #8
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 | |
on: | |
workflow_dispatch: | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Process Stale Issues | |
uses: actions/stale@v9 | |
with: | |
days-before-close: -1 | |
days-before-stale: -1 | |
stale-issue-message: "This issue is being automatically marked stale in an attempt to prioritize ongoing maintinence to the project, and will be closed in 5 days. Respond in the issue if you'd like it to be kept open." | |
close-issue-message: 'This issue was closed closed automatically in an attempt to prioritize ongoing maintinence of the project. Please re-open and comment if you think this was an error.' | |
days-before-issue-stale: 90 | |
days-before-issue-close: 95 | |
exempt-issue-labels: Do this next | |
exempt-assignees: sabeechen |