stale.yml 1.0 KB

123456789101112131415161718192021222324
  1. # Number of days of inactivity before an issue becomes stale
  2. daysUntilStale: 365
  3. # Number of days of inactivity before a stale issue is closed
  4. daysUntilClose: 90
  5. # Issues with these labels will never be considered stale
  6. exemptLabels:
  7. - type:security-issue # never close automatically
  8. - type:feature-request # never close automatically
  9. - type:enhancement # never close automatically
  10. - type:upstream-bug # never close automatically
  11. - state:awaiting-response # handled by different bot
  12. - state:blocked
  13. - state:confirmed
  14. # Set to true to ignore issues in a milestone (defaults to false)
  15. exemptMilestones: true
  16. # Label to use when marking an issue as stale
  17. staleLabel: state:stale
  18. # Comment to post when marking an issue as stale. Set to `false` to disable
  19. markComment: >
  20. This issue has been automatically marked as stale because it has not had
  21. recent activity. It will be closed if no further activity occurs. Thank you
  22. for your contributions.
  23. # Comment to post when closing a stale issue. Set to `false` to disable
  24. closeComment: false