komga/.github/workflows/lock.yml
Gauthier Roebroeck 0ebdbc5a71 ci: lock inactive threads after 30 days
fix incorrect params
2022-08-26 10:59:13 +08:00

19 lines
340 B
YAML

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-inactive-days: '30'
pr-inactive-days: '30'