Lock thread after 365d of inactivity

This commit is contained in:
Eugene Yokota 2023-12-11 18:40:36 -05:00
parent 23a864c7c9
commit 556bd94b16
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