close-stale.yml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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-22.04
  14. steps:
  15. - uses: actions/stale@v9
  16. with:
  17. repo-token: ${{ secrets.GITHUB_TOKEN }}
  18. stale-issue-message: |
  19. Greetings from the Marlin AutoBot!
  20. This issue has had no activity for the last 90 days.
  21. Do you still see this issue with the latest `bugfix-2.1.x` code?
  22. Please add a reply within 14 days or this issue will be automatically closed.
  23. To keep a confirmed issue open we can also add a "Bug: Confirmed" tag.
  24. Disclaimer: This is an open community project with lots of activity and limited
  25. resources. The main project contributors will do a bug sweep ahead of the next
  26. release, but any skilled member of the community may jump in at any time to fix
  27. this issue. That can take a while depending on our busy lives so please be patient,
  28. and take advantage of other resources such as the MarlinFirmware Discord to help
  29. solve the issue.
  30. days-before-stale: 90
  31. days-before-close: 14
  32. stale-issue-label: 'stale-closing-soon'
  33. exempt-all-assignees: true
  34. 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'