stale.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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: 730 # two years
  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. # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
  8. onlyLabels: []
  9. # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
  10. exemptLabels:
  11. - "maybe-later"
  12. - "priority: high"
  13. # Set to true to ignore issues in a project (defaults to false)
  14. exemptProjects: true
  15. # Set to true to ignore issues in a milestone (defaults to false)
  16. exemptMilestones: false
  17. # Set to true to ignore issues with an assignee (defaults to false)
  18. exemptAssignees: false
  19. # Label to use when marking as stale
  20. staleLabel: stale
  21. # Comment to post when marking as stale. Set to `false` to disable
  22. markComment: >
  23. This issue has been automatically marked as stale because it has not had
  24. recent activity. It will be closed if no further activity occurs. Thank you
  25. for your contributions.
  26. # Comment to post when removing the stale label.
  27. unmarkComment: >
  28. This issue is marked to be `stale` and is going to be closed within a week. If you think it shouldn't be closed, please leave a comment.
  29. # Comment to post when closing a stale Issue or Pull Request.
  30. # closeComment: >
  31. # Your comment here.
  32. # Limit the number of actions per hour, from 1-30. Default is 30
  33. limitPerRun: 30
  34. # Limit to only `issues` or `pulls`
  35. # only: issues
  36. # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
  37. # pulls:
  38. # daysUntilStale: 30
  39. # markComment: >
  40. # This pull request has been automatically marked as stale because it has not had
  41. # recent activity. It will be closed if no further activity occurs. Thank you
  42. # for your contributions.
  43. # issues:
  44. # exemptLabels:
  45. # - confirmed