stale.yml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. # Configuration for Stale (https://github.com/apps/stale)
  2. # Number of days of inactivity before an issue becomes stale
  3. daysUntilStale: 14
  4. # Number of days of inactivity before a stale issue is closed
  5. daysUntilClose: 7
  6. # Issues with these labels will never be considered stale
  7. exemptLabels:
  8. - "status: accepted"
  9. - "status: gathering feedback"
  10. - "status: blocked"
  11. # Label to use when marking an issue as stale
  12. staleLabel: wontfix
  13. # Comment to post when marking an issue as stale. Set to `false` to disable
  14. markComment: >
  15. This issue has been automatically marked as stale because it has not had
  16. recent activity. It will be closed if no further activity occurs. NetBox
  17. is governed by a small group of core maintainers which means not all opened
  18. issues may receive direct feedback. Please see our [contributing guide](https://github.com/netbox-community/netbox/blob/develop/CONTRIBUTING.md).
  19. # Comment to post when closing a stale issue. Set to `false` to disable
  20. closeComment: >
  21. This issue has been automatically closed due to lack of activity. In an
  22. effort to reduce noise, please do not comment any further. Note that the
  23. core maintainers may elect to reopen this issue at a later date if deemed
  24. necessary.