chore: Add lock threads action

This commit is contained in:
Sören Beye 2022-01-20 07:14:51 +01:00 committed by GitHub
parent 79f8641f04
commit 737af7ef4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

28
.github/workflows/lock_threads.yml vendored Normal file
View File

@ -0,0 +1,28 @@
{
"name": "Lock Threads",
"on": {
"schedule": [
{
"cron": "0 1 * * *"
}
],
"workflow_dispatch": null
},
"permissions": {
"issues": "write",
"pull-requests": "write"
},
"concurrency": {
"group": "lock"
},
"jobs": {
"action": {
"runs-on": "ubuntu-latest",
"steps": [
{
"uses": "dessant/lock-threads@v3"
}
]
}
}
}