stale.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Configuration for probot-stale - https://github.com/probot/stale
  2. # Number of days of inactivity before an Issue or Pull Request becomes stale
  3. daysUntilStale: 365
  4. # Number of days of inactivity before a stale Issue or Pull Request is closed
  5. daysUntilClose: 14
  6. # Issues or Pull Requests with these labels will never be considered stale
  7. exemptLabels:
  8. - regression
  9. - security
  10. - triaged
  11. # Label to use when marking as stale
  12. staleLabel: stale
  13. # Comment to post when marking as stale. Set to `false` to disable
  14. markComment: >
  15. Thanks for your contribution!
  16. This issue has been automatically marked as stale because it has not had
  17. recent activity. Because the Atom team treats their issues
  18. [as their backlog](https://en.wikipedia.org/wiki/Scrum_(software_development)#Product_backlog), stale issues
  19. are closed. If you would like this issue to remain open:
  20. 1. Verify that you can still reproduce the issue in the latest version of Atom
  21. 1. Comment that the issue is still reproducible and include:
  22. * What version of Atom you reproduced the issue on
  23. * What OS and version you reproduced the issue on
  24. * What steps you followed to reproduce the issue
  25. Issues that are labeled as triaged will not be automatically marked as stale.
  26. # Comment to post when removing the stale label. Set to `false` to disable
  27. unmarkComment: false
  28. # Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable
  29. closeComment: false
  30. # Limit to only `issues` or `pulls`
  31. only: issues