stale.yml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #
  2. # Copyright 2023 Apollo Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # Configuration for probot-stale - https://github.com/probot/stale
  17. # General configuration
  18. # Number of days of inactivity before an issue becomes stale
  19. daysUntilStale: 30
  20. # Issues with these labels will never be considered stale
  21. exemptLabels:
  22. - bug
  23. - discussion
  24. - enhancement
  25. - feature
  26. - feature request
  27. - help wanted
  28. - info
  29. - need investigation
  30. - tips
  31. # Set to true to ignore issues in a project (defaults to false)
  32. exemptProjects: true
  33. # Set to true to ignore issues in a milestone (defaults to false)
  34. exemptMilestones: true
  35. # Set to true to ignore issues with an assignee (defaults to false)
  36. exemptAssignees: true
  37. # Label to use when marking an issue as stale
  38. staleLabel: stale
  39. # Pull request specific configuration
  40. pulls:
  41. # Number of days of inactivity before a stale Issue or Pull Request is closed.
  42. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
  43. daysUntilClose: 14
  44. # Comment to post when marking as stale. Set to `false` to disable
  45. markComment: >
  46. This pull request has been automatically marked as stale because it has not had activity
  47. in the last 30 days. It will be closed in 14 days if no further activity occurs. Please
  48. feel free to give a status update now, ping for review, or re-open when it's ready.
  49. Thank you for your contributions!
  50. # Comment to post when closing a stale Issue or Pull Request.
  51. closeComment: >
  52. This pull request has been automatically closed because it has not had
  53. activity in the last 14 days. Please feel free to give a status update now, ping for review, or re-open when it's ready.
  54. Thank you for your contributions!
  55. # Limit the number of actions per hour, from 1-30. Default is 30
  56. limitPerRun: 30
  57. # Issue specific configuration
  58. issues:
  59. # Number of days of inactivity before a stale Issue or Pull Request is closed.
  60. daysUntilClose: 7
  61. # Comment to post when marking as stale. Set to `false` to disable
  62. markComment: >
  63. This issue has been automatically marked as stale because it has not had activity in the
  64. last 30 days. It will be closed in 7 days unless it is tagged "help wanted" or other activity
  65. occurs. Thank you for your contributions.
  66. # Comment to post when closing a stale Issue or Pull Request.
  67. closeComment: >
  68. This issue has been automatically closed because it has not had activity in the
  69. last 7 days. If this issue is still valid, please ping a maintainer and ask them to label it as "help wanted".
  70. Thank you for your contributions.
  71. # Limit the number of actions per hour, from 1-30. Default is 30
  72. limitPerRun: 30