Marlin 2.0 for Flying Bear 4S/5
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
#
# 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 == 'MarlinFirmware/Marlin'
runs-on : ubuntu-latest
steps :
- uses : actions/stale@v3
with :
repo-token : ${{ secrets.GITHUB_TOKEN }}
stale-issue-message : 'This issue has had no activity in the last 60 days. Please add a reply if you want to keep this issue active, otherwise it will be automatically closed within 10 days.'
days-before-stale : 60
days-before-close : 10
stale-issue-label : 'stale-closing-soon'
exempt-all-assignees : true
exempt-issue-labels: 'Bug: Confirmed !,T: Feature Request,Needs: Discussion,Needs: Documentation,Needs: Patch,Needs: Work,Needs : Testing,help wanted,no-locking'