mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 11:15:12 +01:00
20 lines
338 B
YAML
20 lines
338 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: '2'
|
|
pr-inactive-days: '2'
|