stale.yml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. # It will check 120 issues per day.
  47. limitPerRun: 5
  48. # Limit to only `issues` or `pulls`
  49. only: issues
  50. # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
  51. # pulls:
  52. # daysUntilStale: 30
  53. # markComment: >
  54. # This pull request has been automatically marked as stale because it has not had
  55. # recent activity. It will be closed if no further activity occurs. Thank you
  56. # for your contributions.
  57. # issues:
  58. # exemptLabels:
  59. # - confirmed