Close Stale Issues #589
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: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
issue-cleanup: | |
permissions: | |
issues: write | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
name: Stale issue | |
steps: | |
- uses: aws-actions/stale-issue-cleanup@v6 | |
with: | |
issue-types: issues | |
ancient-issue-message: This issue has not received any attention in 30 days. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. | |
stale-issue-message: This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. | |
stale-issue-label: closing-soon | |
exempt-issue-labels: no-autoclose, feature-request | |
response-requested-label: response-requested | |
# Don't set closed-for-staleness label to skip closing very old issues regardless of label | |
closed-for-staleness-label: closed-for-staleness | |
# Issue timing | |
days-before-stale: 7 | |
days-before-close: 14 | |
days-before-ancient: 30 | |
# If you don't want to mark an issue as being ancient based on a threshold of "upvotes", you can set this here. | |
# An "upvote" is the total number of +1, heart, hooray, and rocket reactions on an issue. | |
minimum-upvotes-to-exempt: 5 | |
loglevel: DEBUG | |
dry-run: false | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |