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 719B

123456789101112131415161718192021222324252627
  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 30 days. Please add a reply if you want to keep this issue active, otherwise it will be automatically closed within 7 days.'
  19. days-before-stale: 30
  20. days-before-close: 7
  21. stale-issue-label: 'stale-closing-soon'
  22. exempt-issue-labels: 'T: Feature Request'