stale.yml 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. # Number of days of inactivity before an issue becomes stale
  2. daysUntilStale: 60
  3. # Number of days of inactivity before a stale issue is closed
  4. daysUntilClose: 7
  5. # Issues with these labels will never be considered stale
  6. exemptLabels:
  7. - backlog
  8. # Label to use when marking an issue as stale
  9. staleLabel: stale
  10. # Comment to post when marking an issue as stale. Set to `false` to disable
  11. markComment: >
  12. This issue has been automatically marked as stale because it has not had
  13. recent activity. It will be closed if no further activity occurs. If this
  14. was a feature request that others have shown no interest in then it's
  15. likely to not get implemented due to lack of interest. If others also
  16. want to see this feature then now is the time to say something!
  17. Thank you for your contributions.
  18. # Comment to post when closing a stale issue. Set to `false` to disable
  19. closeComment: false
  20. exemptMilestones: true
  21. # Since old PRs are less useful than old issues ping them sooner.
  22. pulls:
  23. daysUntilStale: 30
  24. markComment: >
  25. This pull request has not had any activity in 30 days. Since things move fast it's best
  26. to get PRs merged in. If this PR addresses a previously filed issue that needs to be
  27. resolved please work to get it merged in, or allow somebody else to work on a fix.
  28. This PR will be closed if no further activity occurs. Thank you for your contributions!
  29. exemptLabels:
  30. - bot