mirror of
https://github.com/gotson/komga.git
synced 2026-05-08 04:22:28 +02:00
ci: lock inactive threads after 30 days
This commit is contained in:
parent
d26415eb39
commit
e178da2179
1 changed files with 19 additions and 0 deletions
19
.github/workflows/lock.yml
vendored
Normal file
19
.github/workflows/lock.yml
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
name: Lock threads
|
||||
|
||||
on:
|
||||
# Daily
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
# Manual trigger
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
|
||||
jobs:
|
||||
lock:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: dessant/lock-threads@v3
|
||||
with:
|
||||
github-token: ${{ github.token }}
|
||||
issue-lock-inactive-days: '30'
|
||||
pr-lock-inactive-days: '30'
|
||||
Loading…
Reference in a new issue