lock.yml 999 B

1234567891011121314151617181920212223242526272829303132333435
  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: 30
  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. # Assign `resolved` as the reason for locking. Set to `false` to disable
  14. setLockReason: false
  15. # Limit to only `issues` or `pulls`
  16. # only: issues
  17. # Optionally, specify configuration settings just for `issues` or `pulls`
  18. # issues:
  19. # exemptLabels:
  20. # - help-wanted
  21. # lockLabel: outdated
  22. # pulls:
  23. # daysUntilLock: 30
  24. # Repository to extend settings from
  25. # _extends: repo