Label and close stale issues #406
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: Label and close stale issues | |
on: | |
schedule: | |
- cron: '0 10 * * *' # everyday at 10am | |
workflow_dispatch: | |
permissions: | |
issues: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # tag=v2.6.1 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
api.github.com:443 | |
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # tag=v9.0.0 | |
with: | |
days-before-stale: 28 | |
days-before-close: 7 | |
stale-issue-message: >- | |
This issue has been automatically marked as stale because it has been | |
inactive for 28 days. To reactivate the issue, simply post a comment | |
with the requested information to help us diagnose this issue. If this | |
issue remains inactive for another 7 days, it will be automatically | |
closed. | |
close-issue-message: >- | |
This issue has been automatically closed due to inactivity. If you are | |
still experiencing problems, please open a new issue. | |
stale-issue-label: "stale :skull:" | |
only-labels: "needs more info :thinking:" |