From 7ef086e2814d85a45d11e96a050198f8e85942a6 Mon Sep 17 00:00:00 2001 From: Maud <110405507+mushroomempires@users.noreply.github.com> Date: Tue, 1 Jul 2025 09:48:14 +0200 Subject: [PATCH] fix(ci-nightly): trigger nightly builds on mondays instead of wednesdays (#5649) --- .github/scripts/test-all-plugins.py | 2 +- .github/workflows/plugins.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/test-all-plugins.py b/.github/scripts/test-all-plugins.py index 5596964d9..29f975936 100644 --- a/.github/scripts/test-all-plugins.py +++ b/.github/scripts/test-all-plugins.py @@ -135,7 +135,7 @@ if __name__ == '__main__': print("plugin : ", plugin) folders_list = get_tests_folders(plugin) if len(folders_list) == 0: - print(f"we don't test {plugin} as it don't have any robots tests.") + print(f"we don't test {plugin} as it doesn't have any robot tests.") continue nb_plugins += 1 diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index 66e62ec26..00f9d270c 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -14,7 +14,7 @@ on: default: false type: boolean schedule: - - cron: "30 1 * * 3" + - cron: "30 1 * * 1" pull_request: paths: - '.github/workflows/plugins.yml'