stale.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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: 15
  4. # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
  5. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
  6. daysUntilClose: 15
  7. # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
  8. exemptLabels:
  9. - on hold
  10. - meta
  11. # Set to true to ignore issues in a project (defaults to false)
  12. exemptProjects: false
  13. # Set to true to ignore issues in a milestone (defaults to false)
  14. exemptMilestones: false
  15. # Set to true to ignore issues with an assignee (defaults to false)
  16. exemptAssignees: false
  17. # Label to use when marking as stale
  18. staleLabel: stale
  19. # Comment to post when marking as stale. Set to `false` to disable
  20. markComment: >
  21. Hi all!
  22. This Pull Request has not had any recent activity, is it still relevant? If so, what is blocking it?
  23. Is there anything we can do to help move it forward?
  24. Thanks!
  25. # Comment to post when removing the stale label.
  26. # unmarkComment: >
  27. # Your comment here.
  28. # Comment to post when closing a stale Issue or Pull Request.
  29. closeComment: >
  30. Hi folks!
  31. This Pull Request is being closed as there was no response to the previous prompt.
  32. However, please leave a comment whenever you're ready to resume, so it can be reopened.
  33. Thanks again!
  34. # Limit the number of actions per hour, from 1-30. Default is 30
  35. limitPerRun: 30
  36. # Limit to only `issues` or `pulls`
  37. only: pulls
  38. # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
  39. # pulls:
  40. # daysUntilStale: 30
  41. # markComment: >
  42. # This pull request has been automatically marked as stale because it has not had
  43. # recent activity. It will be closed if no further activity occurs. Thank you
  44. # for your contributions.
  45. # issues:
  46. # exemptLabels:
  47. # - confirmed