Merge pull request #7452 from eed3si9n/wip/lock

Lock thread after 365d of inactivity
This commit is contained in:
eugene yokota 2023-12-11 18:42:52 -05:00 committed by GitHub
commit c4293af403
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 0 deletions

21
.github/workflows/lock-thread.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: 'Lock Threads'
on:
schedule:
# once a week on Saturday
- cron: '0 1 * * 6'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
discussions: write
concurrency:
group: lock-threads
jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v5