stale.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. # Number of days of inactivity before an Issue or Pull Request becomes stale.
  2. daysUntilStale: 90
  3. # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
  4. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
  5. daysUntilClose: 30
  6. # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable.
  7. exemptLabels: ["stale/exempt", "pinned"]
  8. # Label to use when marking as stale.
  9. staleLabel: stale
  10. # Comment to post when marking as stale. Set to `false` to disable.
  11. issues:
  12. markComment: >
  13. Thank you for taking the time to raise this issue. However, it has
  14. not had any activity on it in the past 90 days and will be closed in
  15. 30 days if no updates occur.
  16. Please check if the master branch has already resolved the issue
  17. since it was raised. If you believe the issue is still valid and you
  18. would like input from the maintainers then please comment to ask for
  19. it to be reviewed.
  20. pulls:
  21. markComment: >
  22. Thank you for your contribution! However, this pull request has not
  23. had any activity in the past 90 days and will be closed in 30 days if
  24. no updates occur.
  25. If you believe the changes are still valid then please verify your
  26. branch has no conflicts with master and rebase if needed. If you
  27. are awaiting a (re-)review then please let us know.