stale.yml 3.0 KB

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