mirror of https://github.com/Sonarr/Sonarr
22 lines
496 B
YAML
22 lines
496 B
YAML
|
name: 'Lock threads'
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
schedule:
|
||
|
- cron: '0 0 * * *'
|
||
|
|
||
|
jobs:
|
||
|
lock:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: dessant/lock-threads@v2
|
||
|
with:
|
||
|
github-token: ${{ github.token }}
|
||
|
issue-lock-inactive-days: '90'
|
||
|
issue-exclude-created-before: ''
|
||
|
issue-exclude-labels: 'one-day-maybe'
|
||
|
issue-lock-labels: ''
|
||
|
issue-lock-comment: ''
|
||
|
issue-lock-reason: 'resolved'
|
||
|
process-only: ''
|