lock.yml 901 B

12345678910111213141516171819202122232425262728
  1. # Configuration for lock-threads - https://github.com/dessant/lock-threads
  2. # Number of days of inactivity before a closed issue or pull request is locked
  3. daysUntilLock: 14
  4. # Issues and pull requests with these labels will not be locked. Set to `[]` to disable
  5. exemptLabels: [bug, enhancement, future, high priority, plans, waiting for release]
  6. # Label to add before locking, such as `outdated`. Set to `false` to disable
  7. lockLabel: false
  8. # Comment to post before locking. Set to `false` to disable
  9. lockComment: >
  10. This thread has been automatically locked since there has not been
  11. any recent activity after it was closed. Please open a new issue for
  12. related bugs.
  13. # Limit to only `issues` or `pulls`
  14. only: issues
  15. # Optionally, specify configuration settings just for `issues` or `pulls`
  16. # issues:
  17. # exemptLabels:
  18. # - help-wanted
  19. # lockLabel: outdated
  20. # pulls:
  21. # daysUntilLock: 30