Close Stale Issues #204
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: "22 1 * * *" | |
jobs: | |
stale: | |
name: Close Stale Issues | |
if: github.repository == 'knutwurst/Marlin-2-0-x-Anycubic-i3-MEGA-S' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label / comment or this will be closed in 5 days.' | |
days-before-stale: 300 | |
days-before-close: 30 | |
stale-issue-label: 'stale-closing-soon' | |
exempt-issue-labels: 'T: Feature Request' |