stale.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. name: 'Close stale issues and PRs'
  2. on:
  3. schedule:
  4. - cron: '0 9-17/4 * * *'
  5. jobs:
  6. stale:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/stale@v8
  10. with:
  11. days-before-pr-close: -1
  12. days-before-stale: 365
  13. days-before-close: 14
  14. operations-per-run: 3000
  15. ascending: true
  16. exempt-issue-labels: 'Status: Triage,Developer Environment :computer:,Status: On Backlog,PR: Community Contribution :crown:,PR: Printer Definitions :factory:,PR: Translations :books:'
  17. stale-issue-label: 'Status: Stale :hourglass:'
  18. labels-to-add-when-unstale: 'Status: Triage'
  19. only-labels: "Type: Bug,Status: Deferred"
  20. stale-issue-message: |
  21. Hi 👋,
  22. We are cleaning our list of issues to improve our focus.
  23. This bug seems to be older than a year, which is at least three major Cura releases ago.
  24. It also received the label Deferred indicating that we did not have time to work on it back then and haven't found time to work on it since.
  25. If this is still a problem for you in the current version of Cura, can you please leave a comment?
  26. We will have a fresh set of eyes to look at it.
  27. If it is not a problem anymore, you don't have to do anything, and this issue will be automatically closed in 14 days.
  28. close-issue-message: |
  29. This issue was closed because it has been inactive for 14 days since being marked as stale.
  30. If you encounter this issue and still experience this to be a problem, you are welcome to make a fresh new issue with an updated description and screenshots.
  31. permissions:
  32. contents: write # only for delete-branch option
  33. issues: write
  34. pull-requests: write