2
0

stale.yml 1.3 KB

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