stale.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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: 365
  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: 30
  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. - ARC
  12. - bounty
  13. - Codegen
  14. - Crash
  15. - Generics
  16. - High Priority
  17. - Macros
  18. - Next release
  19. - Showstopper
  20. - Static[T]
  21. # Set to true to ignore issues in a project (defaults to false)
  22. exemptProjects: false
  23. # Set to true to ignore issues in a milestone (defaults to false)
  24. exemptMilestones: false
  25. # Set to true to ignore issues with an assignee (defaults to false)
  26. exemptAssignees: false
  27. # Label to use when marking as stale
  28. staleLabel: stale
  29. # Comment to post when marking as stale. Set to `false` to disable
  30. markComment: >
  31. This pull request has been automatically marked as stale because it has not had
  32. recent activity.
  33. If you think it is still a valid PR, please rebase it on the latest devel;
  34. otherwise it will be closed. Thank you for your contributions.
  35. # Comment to post when removing the stale label.
  36. # unmarkComment: >
  37. # Your comment here.
  38. # Comment to post when closing a stale Issue or Pull Request.
  39. # closeComment: >
  40. # Your comment here.
  41. # Limit the number of actions per hour, from 1-30. Default is 30
  42. limitPerRun: 20
  43. # Limit to only `issues` or `pulls`
  44. only: pulls
  45. # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
  46. # pulls:
  47. # daysUntilStale: 30
  48. # markComment: >
  49. # This pull request has been automatically marked as stale because it has not had
  50. # recent activity. It will be closed if no further activity occurs. Thank you
  51. # for your contributions.
  52. # issues:
  53. # exemptLabels:
  54. # - confirmed