stale.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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: 30
  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: 7
  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. This issue has been automatically marked as stale because it has not had
  21. recent activity. It will be closed if no further activity occurs. Thank you
  22. for your contributions.
  23. # Comment to post when removing the stale label.
  24. # unmarkComment: >
  25. # Your comment here.
  26. # Comment to post when closing a stale Issue or Pull Request.
  27. # closeComment: >
  28. # Your comment here.
  29. # Limit the number of actions per hour, from 1-30. Default is 30
  30. limitPerRun: 30
  31. # Limit to only `issues` or `pulls`
  32. only: pulls
  33. # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
  34. # pulls:
  35. # daysUntilStale: 30
  36. # markComment: >
  37. # This pull request has been automatically marked as stale because it has not had
  38. # recent activity. It will be closed if no further activity occurs. Thank you
  39. # for your contributions.
  40. # issues:
  41. # exemptLabels:
  42. # - confirmed