Lock threads #213
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From https://github.com/marketplace/actions/lock-threads | |
name: 'Lock threads' | |
on: | |
schedule: | |
- cron: '0 3 * * 1' | |
jobs: | |
lock: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dessant/[email protected] | |
with: | |
github-token: ${{ github.token }} | |
issue-lock-inactive-days: '180' | |
# issue-exclude-created-before: '' | |
# issue-exclude-labels: '' | |
# issue-lock-labels: '' | |
issue-lock-comment: > | |
This old thread has been automatically locked. If you think you have | |
found something related to this, please open a new issue by following | |
the issue guide (<https://yihui.org/issue/>), and link to this | |
old issue if necessary. | |
issue-lock-reason: 'resolved' | |
pr-lock-inactive-days: '180' | |
# pr-exclude-created-before: '' | |
# pr-exclude-labels: '' | |
# pr-lock-labels: '' | |
# pr-lock-comment: '' | |
# pr-lock-reason: '' | |
# process-only: '' |