stale.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Number of days of inactivity before an Issue or Pull Request becomes stale
  2. daysUntilStale: 45
  3. # Number of days of inactivity before a stale Issue or Pull Request is closed.
  4. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
  5. daysUntilClose: 15
  6. # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
  7. exemptLabels:
  8. - pinned
  9. - security
  10. - enhancement
  11. - bug
  12. # Set to true to ignore issues in a project (defaults to false)
  13. exemptProjects: false
  14. # Set to true to ignore issues in a milestone (defaults to false)
  15. exemptMilestones: false
  16. # Label to use when marking as stale
  17. staleLabel: stale
  18. # Comment to post when marking as stale. Set to `false` to disable
  19. markComment: >
  20. This issue has been automatically marked as stale because it has not had
  21. recent activity. It will be closed if no further activity occurs. Thank you
  22. for your contributions.
  23. # Comment to post when removing the stale label.
  24. # unmarkComment: >
  25. # Your comment here.
  26. # Comment to post when closing a stale Issue or Pull Request.
  27. closeComment: >
  28. This issue will be auto-closed because there hasn't been any activity for a few months. Feel free to open a new one if you still experience this problem.
  29. # Limit the number of actions per hour, from 1-30. Default is 30
  30. limitPerRun: 30
  31. # Limit to only `issues` or `pulls`
  32. only: issues