stale.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. # Set to true to ignore issues in a project (defaults to false)
  10. exemptProjects: false
  11. # Set to true to ignore issues in a milestone (defaults to false)
  12. exemptMilestones: false
  13. # Set to true to ignore issues with an assignee (defaults to false)
  14. exemptAssignees: false
  15. # Label to use when marking as stale
  16. staleLabel: stale
  17. # Comment to post when marking as stale. Set to `false` to disable
  18. markComment: >
  19. This issue has been automatically marked as stale because it has not had
  20. recent activity. It will be closed if no further activity occurs. Thank you
  21. for your contributions.
  22. # Comment to post when removing the stale label.
  23. # unmarkComment: >
  24. # Your comment here.
  25. # Comment to post when closing a stale Issue or Pull Request.
  26. # closeComment: >
  27. # Your comment here.
  28. # Limit the number of actions per hour, from 1-30. Default is 30
  29. limitPerRun: 30
  30. # Limit to only `issues` or `pulls`
  31. only: pulls
  32. # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
  33. # pulls:
  34. # daysUntilStale: 30
  35. # markComment: >
  36. # This pull request has been automatically marked as stale because it has not had
  37. # recent activity. It will be closed if no further activity occurs. Thank you
  38. # for your contributions.
  39. # issues:
  40. # exemptLabels:
  41. # - confirmed