From 9680c56b083a01ba0cea58659dc9d9c0e2733a67 Mon Sep 17 00:00:00 2001 From: Max Hilbrunner Date: Mon, 6 Jan 2025 11:09:07 +0100 Subject: [PATCH] CI: Update some comments --- .github/dependabot.yml | 4 +++- .github/workflows/sync_class_ref.yml | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 37a2e10d1..2fadf9a94 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,5 +9,7 @@ updates: schedule: interval: "daily" ignore: - # ReadTheDocs is staying on v1. + # We need to decide on when we upgrade Sphinx manually, + # as historically, this has been proven to often imply larger changes + # (RTD compat, upgrading extensions, other dependencies, our content, etc.). - dependency-name: "sphinx" diff --git a/.github/workflows/sync_class_ref.yml b/.github/workflows/sync_class_ref.yml index 14cb90eac..0f8680283 100644 --- a/.github/workflows/sync_class_ref.yml +++ b/.github/workflows/sync_class_ref.yml @@ -3,9 +3,10 @@ name: Sync Class Reference on: workflow_dispatch: # Scheduled updates only run on the default/master branch. + # Other branches need to be run manually (usually after a new release for that branch). schedule: - # Run it at night (European time) every Saturday. - # The offset is there to try and avoid the high load times. + # Run it at (European) night time every Saturday. + # The offset is there to try and avoid high load times. - cron: '15 3 * * 6' # Make sure jobs cannot overlap.