2021-01-21 09:47:19 +02:00
|
|
|
name: 'Lock threads'
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lock:
|
|
|
|
runs-on: ubuntu-latest
|
2024-05-18 18:08:34 +02:00
|
|
|
if: github.repository == 'Sonarr/Sonarr'
|
2021-01-21 09:47:19 +02:00
|
|
|
steps:
|
2024-04-14 12:03:16 +02:00
|
|
|
- uses: dessant/lock-threads@v5
|
2021-01-21 09:47:19 +02:00
|
|
|
with:
|
|
|
|
github-token: ${{ github.token }}
|
2024-04-14 12:03:16 +02:00
|
|
|
issue-inactive-days: '90'
|
|
|
|
exclude-issue-created-before: ''
|
|
|
|
exclude-any-issue-labels: 'one-day-maybe'
|
|
|
|
add-issue-labels: ''
|
|
|
|
issue-comment: ''
|
2021-01-21 09:47:19 +02:00
|
|
|
issue-lock-reason: 'resolved'
|
|
|
|
process-only: ''
|