stale.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Probot Stale configuration file
  2. # Number of days of inactivity before an issue becomes stale
  3. # 600 is approximately 1 year and 8 months
  4. daysUntilStale: 30
  5. # Number of days of inactivity before a stale issue is closed
  6. daysUntilClose: 7
  7. # Issues with these labels will never be considered stale
  8. exemptLabels:
  9. - Confirmed
  10. - Release Blocker
  11. - Critical
  12. - P1
  13. - P2
  14. - Bug
  15. - Feature
  16. - Test Failure
  17. # Label to use when marking an issue as stale
  18. staleLabel: stale
  19. # Comment to post when marking an issue as stale. Set to `false` to disable
  20. markComment: |
  21. This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
  22. If this issue is closed prematurely, please leave a comment and we will gladly reopen the issue.
  23. # Comment to post when removing the stale label. Set to `false` to disable
  24. unmarkComment: |
  25. Thank you for updating this issue. It is no longer marked as stale.
  26. # Comment to post when closing a stale issue. Set to `false` to disable
  27. closeComment: false
  28. # Limit to only `issues` or `pulls`
  29. only: issues