stale.yml 2.0 KB

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