stale.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. - P2
  15. - P3
  16. - good first issue
  17. - release-blocker
  18. - fix-docs
  19. - regression
  20. - fix-error-msg
  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: true
  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. Hi, I'm a bot from the Ray team :)
  32. 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.
  33. If there is no further activity in the 14 days, the issue will be closed!
  34. - If you'd like to keep the issue open, just leave any comment, and the stale label will be removed!
  35. - If you'd like to get more attention to the issue, please tag one of Ray's contributors.
  36. 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).
  37. # Comment to post when removing the stale label.
  38. # unmarkComment: >
  39. # Your comment here.
  40. # Comment to post when closing a stale Issue or Pull Request.
  41. closeComment: |
  42. Hi again! The issue will be closed because there has been no more activity in the 14 days since the last message.
  43. Please feel free to reopen or open a new issue if you'd still like it to be addressed.
  44. 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).
  45. Thanks again for opening the issue!
  46. # Limit the number of actions per hour, from 1-30. Default is 30
  47. limitPerRun: 30
  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. daysUntilClose: 14
  54. markComment: >
  55. This pull request has been automatically marked as stale because it has not had
  56. recent activity. It will be closed in 14 days if no further activity occurs. Thank you
  57. for your contributions.
  58. - If you'd like to keep this open, just leave any comment, and the stale label will be removed.
  59. # issues:
  60. # exemptLabels:
  61. # - confirmed