My Marlin configs for Fabrikator Mini and CTC i3 Pro B
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 892B

12345678910111213141516171819202122232425262728
  1. #
  2. # close-stale.yml
  3. # Close open issues after a period of inactivity
  4. #
  5. name: Close Stale Issues
  6. on:
  7. schedule:
  8. - cron: "22 1 * * *"
  9. jobs:
  10. stale:
  11. name: Close Stale Issues
  12. if: github.repository == 'MarlinFirmware/Marlin'
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: actions/stale@v3
  16. with:
  17. repo-token: ${{ secrets.GITHUB_TOKEN }}
  18. 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.'
  19. days-before-stale: 60
  20. days-before-close: 10
  21. stale-issue-label: 'stale-closing-soon'
  22. exempt-all-assignees: true
  23. exempt-issue-labels: 'Bug: Confirmed !,T: Feature Request,Needs: More Data,Needs: Discussion,Needs: Documentation,Needs: Patch,Needs: Work,Needs: Testing,help wanted,no-locking'