From ca7339da2171401b91bab4171dfd434c38e1d08c Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 4 Sep 2020 14:11:23 +0100 Subject: [PATCH] workflows: reduce scheduled PR workflow's frequency. Once every 24h should be sufficient for both of these. --- .github/workflows/spdx.yml | 2 +- .github/workflows/tapioca.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/spdx.yml b/.github/workflows/spdx.yml index e26da352db..efe3f1ac61 100644 --- a/.github/workflows/spdx.yml +++ b/.github/workflows/spdx.yml @@ -6,7 +6,7 @@ on: branches-ignore: - master schedule: - - cron: '0 */12 * * *' + - cron: '0 0 * * *' jobs: spdx: if: github.repository == 'Homebrew/brew' diff --git a/.github/workflows/tapioca.yml b/.github/workflows/tapioca.yml index 98761c3240..0ce75a5ea1 100644 --- a/.github/workflows/tapioca.yml +++ b/.github/workflows/tapioca.yml @@ -6,7 +6,7 @@ on: branches-ignore: - master schedule: - - cron: '0 */12 * * *' + - cron: '0 0 * * *' jobs: tapioca: if: github.repository == 'Homebrew/brew'