You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.2 KiB

  1. # Configuration for probot-stale - https://github.com/probot/stale
  2. # General configuration
  3. # Pull request specific configuration
  4. pulls:
  5. staleLabel: awaiting changes
  6. # Number of days of inactivity before an Issue or Pull Request becomes stale
  7. daysUntilStale: 45
  8. # Number of days of inactivity before a stale Issue or Pull Request is closed.
  9. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
  10. daysUntilClose: 30
  11. # Comment to post when marking as stale. Set to `false` to disable
  12. markComment: >
  13. Thank you for your contribution!
  14. This pull request has been automatically marked as stale because it has not had
  15. activity in the last 45 days. It will be closed in 30 days if no further activity occurs.
  16. Please feel free to give a status update now, or re-open when it's ready.
  17. For maintainers: Please label with `awaiting review`, `breaking_change`, `in progress`, or `on hold` to prevent
  18. the issue from being re-flagged.
  19. # Comment to post when closing a stale Issue or Pull Request.
  20. closeComment: >
  21. Thank you for your contribution!
  22. This pull request has been automatically closed because it has not had activity in the last 30 days.
  23. Please feel free to give a status update now, ping for review, or re-open when it's ready.
  24. # Limit the number of actions per hour, from 1-30. Default is 30
  25. limitPerRun: 30
  26. exemptLabels:
  27. - awaiting review
  28. - breaking_change
  29. - in progress
  30. - on hold
  31. # Issue specific configuration
  32. issues:
  33. staleLabel: stale
  34. limitPerRun: 10
  35. daysUntilStale: 90
  36. daysUntilClose: 30
  37. markComment: >
  38. This issue has been automatically marked as stale because it has not had activity in the
  39. last 90 days. It will be closed in the next 30 days unless it is tagged properly or other activity
  40. occurs.
  41. For maintainers: Please label with `bug`, `in progress`, `on hold`, `discussion` or `to do` to prevent
  42. the issue from being re-flagged.
  43. closeComment: >
  44. This issue has been automatically closed because it has not had activity in the last 30 days.
  45. If this issue is still valid, re-open the issue and let us know.
  46. exemptLabels:
  47. - bug
  48. - in progress
  49. - on hold
  50. - discussion
  51. - to do