From 84a72d57b34d5c682a742463d6f1483e98889498 Mon Sep 17 00:00:00 2001 From: Luc <8822552+luc-github@users.noreply.github.com> Date: Mon, 21 Sep 2020 21:19:19 +0200 Subject: [PATCH] Update lock.yml decrease check to once per day and set inactivity time to 10 days --- .github/workflows/lock.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 5ddb9753..e72d9967 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -2,7 +2,7 @@ name: 'Lock threads' on: schedule: - - cron: '0 * * * *' + - cron: '0 0 * * *' jobs: lock: @@ -11,7 +11,7 @@ jobs: - uses: dessant/lock-threads@v2 with: github-token: ${{ github.token }} - issue-lock-inactive-days: '1' + issue-lock-inactive-days: '10' issue-exclude-created-before: '' issue-exclude-labels: 'planned' issue-lock-labels: 'outdated'