Close Stale Issues #2768
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
# | |
# close-stale.yml | |
# Close open issues after a period of inactivity | |
# | |
name: Close Stale Issues | |
on: | |
schedule: | |
- cron: '0 1 * * *' | |
jobs: | |
stale: | |
name: Close Stale Issues | |
if: github.repository == 'OctoPrint/OctoPrint-FirmwareUpdater' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: > | |
This issue has been automatically marked as stale because it has not had any | |
recent activity. Please add a reply if you want to keep this issue active, | |
otherwise it will be automatically closed in 5 days. | |
days-before-stale: 14 | |
days-before-close: 5 | |
exempt-issue-labels: 'enhancement,work-in-progress' |