lock.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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: 365
  4. # Skip issues and pull requests created before a given timestamp. Timestamp must
  5. # follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable
  6. skipCreatedBefore: false
  7. # Issues and pull requests with these labels will be ignored. Set to `[]` to disable
  8. exemptLabels: []
  9. # Label to add before locking, such as `outdated`. Set to `false` to disable
  10. lockLabel: false
  11. # Comment to post before locking. Set to `false` to disable
  12. lockComment: false
  13. #lockComment: >
  14. # This thread has been automatically locked since there has not been
  15. # any recent activity after it was closed. Please open a new issue for
  16. # related bugs.
  17. # Assign `resolved` as the reason for locking. Set to `false` to disable
  18. setLockReason: true
  19. # Limit to only `issues` or `pulls`
  20. # only: issues
  21. # Optionally, specify configuration settings just for `issues` or `pulls`
  22. # issues:
  23. # exemptLabels:
  24. # - help-wanted
  25. # lockLabel: outdated
  26. # pulls:
  27. # daysUntilLock: 30
  28. # Repository to extend settings from
  29. # _extends: repo