lock.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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: >
  13. This thread has been automatically locked since there has not been
  14. any recent activity after it was closed. Please open a new issue for
  15. related bugs.
  16. # Assign `resolved` as the reason for locking. Set to `false` to disable
  17. setLockReason: true
  18. # Limit to only `issues` or `pulls`
  19. # only: issues
  20. # Optionally, specify configuration settings just for `issues` or `pulls`
  21. # issues:
  22. # exemptLabels:
  23. # - help-wanted
  24. # lockLabel: outdated
  25. # pulls:
  26. # daysUntilLock: 30
  27. # Repository to extend settings from
  28. # _extends: repo