From 67edec77cbd974f6addba3923179cf0350aa1eab Mon Sep 17 00:00:00 2001 From: Hofer-Julian <30049909+Hofer-Julian@users.noreply.github.com> Date: Mon, 17 Jul 2023 10:29:29 +0200 Subject: [PATCH] Run update jobs less often (#432) As discussed with @visr --- .github/dependabot.yml | 2 +- .github/workflows/pre-commit_auto_update.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 82618bb3f..700707ced 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,4 +4,4 @@ updates: - package-ecosystem: "github-actions" directory: "/" # Location of package manifests schedule: - interval: "daily" + interval: "weekly" diff --git a/.github/workflows/pre-commit_auto_update.yml b/.github/workflows/pre-commit_auto_update.yml index e2e1fbbef..c1b29fd76 100644 --- a/.github/workflows/pre-commit_auto_update.yml +++ b/.github/workflows/pre-commit_auto_update.yml @@ -1,9 +1,9 @@ name: Pre-commit on: - # every day at midnight schedule: - - cron: "0 0 * * *" + # every monday morning + - cron: "0 7 * * MON" # on demand workflow_dispatch: