mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 14:45:09 +01:00
20 lines
348 B
YAML
20 lines
348 B
YAML
name: Lock threads
|
|
|
|
on:
|
|
# Daily
|
|
schedule:
|
|
- cron: '0 * * * *'
|
|
# Manual trigger
|
|
workflow_dispatch:
|
|
inputs:
|
|
|
|
jobs:
|
|
lock:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@v2
|
|
with:
|
|
github-token: ${{ github.token }}
|
|
issue-lock-inactive-days: '2'
|
|
pr-lock-inactive-days: '2'
|