stale.yml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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: 120
  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: 14
  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. - triage
  12. - P0
  13. - P1
  14. - P1.5
  15. - P2
  16. - P3
  17. - good first issue
  18. - release-blocker
  19. - fix-docs
  20. - regression
  21. - fix-error-msg
  22. # Set to true to ignore issues in a project (defaults to false)
  23. exemptProjects: false
  24. # Set to true to ignore issues in a milestone (defaults to false)
  25. exemptMilestones: true
  26. # Set to true to ignore issues with an assignee (defaults to false)
  27. exemptAssignees: false
  28. # Label to use when marking as stale
  29. staleLabel: stale
  30. # Comment to post when marking as stale. Set to `false` to disable
  31. markComment: |
  32. Hi, I'm a bot from the Ray team :)
  33. To help human contributors to focus on more relevant issues, I will automatically add the stale label to issues that have had no activity for more than 4 months.
  34. If there is no further activity in the 14 days, the issue will be closed!
  35. - If you'd like to keep the issue open, just leave any comment, and the stale label will be removed!
  36. - If you'd like to get more attention to the issue, please tag one of Ray's contributors.
  37. You can always ask for help on our [discussion forum](https://discuss.ray.io/) or [Ray's public slack channel](https://github.com/ray-project/ray#getting-involved).
  38. # Comment to post when removing the stale label.
  39. # unmarkComment: >
  40. # Your comment here.
  41. # Comment to post when closing a stale Issue or Pull Request.
  42. closeComment: |
  43. Hi again! The issue will be closed because there has been no more activity in the 14 days since the last message.
  44. Please feel free to reopen or open a new issue if you'd still like it to be addressed.
  45. Again, you can always ask for help on our [discussion forum](https://discuss.ray.io) or [Ray's public slack channel](https://github.com/ray-project/ray#getting-involved).
  46. Thanks again for opening the issue!
  47. # Limit the number of actions per hour, from 1-30. Default is 30
  48. limitPerRun: 30
  49. # Limit to only `issues` or `pulls`
  50. # only: issues
  51. # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
  52. pulls:
  53. daysUntilStale: 30
  54. daysUntilClose: 14
  55. markComment: >
  56. This pull request has been automatically marked as stale because it has not had
  57. recent activity. It will be closed in 14 days if no further activity occurs. Thank you
  58. for your contributions.
  59. - If you'd like to keep this open, just leave any comment, and the stale label will be removed.
  60. # issues:
  61. # exemptLabels:
  62. # - confirmed