stale.yml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Configuration for probot-stale - https://github.com/probot/stale
  2. # General configuration
  3. # Number of days of inactivity before an issue becomes stale
  4. daysUntilStale: 60
  5. # Issues with these labels will never be considered stale
  6. exemptLabels:
  7. - bug
  8. - discussion
  9. - enhancement
  10. - feature
  11. - feature request
  12. - help wanted
  13. - info
  14. - need investigation
  15. - tips
  16. # Set to true to ignore issues in a project (defaults to false)
  17. exemptProjects: true
  18. # Set to true to ignore issues in a milestone (defaults to false)
  19. exemptMilestones: true
  20. # Set to true to ignore issues with an assignee (defaults to false)
  21. exemptAssignees: true
  22. # Label to use when marking an issue as stale
  23. staleLabel: stale
  24. # Pull request specific configuration
  25. pulls:
  26. # Number of days of inactivity before a stale Issue or Pull Request is closed.
  27. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
  28. daysUntilClose: 30
  29. # Comment to post when marking as stale. Set to `false` to disable
  30. markComment: >
  31. This pull request has been automatically marked as stale because it has not had activity
  32. in the last 90 days. It will be closed in 30 days if no further activity occurs. Please
  33. feel free to give a status update now, ping for review, or re-open when it's ready.
  34. Thank you for your contributions!
  35. # Comment to post when closing a stale Issue or Pull Request.
  36. closeComment: >
  37. This pull request has been automatically closed because it has not had
  38. activity in the last 30 days. Please feel free to give a status update now, ping for review, or re-open when it's ready.
  39. Thank you for your contributions!
  40. # Limit the number of actions per hour, from 1-30. Default is 30
  41. limitPerRun: 1
  42. # Issue specific configuration
  43. issues:
  44. # Number of days of inactivity before a stale Issue or Pull Request is closed.
  45. daysUntilClose: 14
  46. # Comment to post when marking as stale. Set to `false` to disable
  47. markComment: >
  48. This issue has been automatically marked as stale because it has not had activity in the
  49. last 90 days. It will be closed in 14 days unless it is tagged "help wanted" or other activity
  50. occurs. Thank you for your contributions.
  51. # Comment to post when closing a stale Issue or Pull Request.
  52. closeComment: >
  53. This issue has been automatically closed because it has not had activity in the
  54. last 14 days. If this issue is still valid, please ping a maintainer and ask them to label it as "help wanted".
  55. Thank you for your contributions.
  56. # Limit the number of actions per hour, from 1-30. Default is 30
  57. limitPerRun: 1