Close Stale Issues #143
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: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
cleanup: | |
runs-on: ubuntu-latest | |
name: "Close Stale Issues Job" | |
steps: | |
- uses: actions/[email protected] | |
with: | |
close-issue-message: This issue was closed due to inactivity. # optional | |
days-before-issue-stale: 14 # optional | |
days-before-pr-stale: -1 # optional | |
exempt-draft-pr: true # optional, default is false | |