stale.yml 967 B

1234567891011121314151617181920212223
  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: 60
  4. # Number of days of inactivity before a stale Issue or Pull Request is closed
  5. daysUntilClose: 7
  6. # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
  7. exemptLabels:
  8. - pinned
  9. - security
  10. # Label to use when marking as stale
  11. staleLabel: wontfix
  12. # Comment to post when marking as stale. Set to `false` to disable
  13. markComment: >
  14. This issue has been automatically marked as stale because it has not had
  15. recent activity. It will be closed if no further activity occurs. Thank you
  16. for your contributions.
  17. # Comment to post when removing the stale label. Set to `false` to disable
  18. unmarkComment: false
  19. # Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable
  20. closeComment: false
  21. # Limit to only `issues` or `pulls`
  22. only: pulls