fix(ci-nightly): trigger nightly builds on mondays instead of wednesdays (#5649)

This commit is contained in:
Maud 2025-07-01 09:48:14 +02:00 committed by GitHub
parent a0339d805e
commit 7ef086e281
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ if __name__ == '__main__':
print("plugin : ", plugin) print("plugin : ", plugin)
folders_list = get_tests_folders(plugin) folders_list = get_tests_folders(plugin)
if len(folders_list) == 0: 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 continue
nb_plugins += 1 nb_plugins += 1

View File

@ -14,7 +14,7 @@ on:
default: false default: false
type: boolean type: boolean
schedule: schedule:
- cron: "30 1 * * 3" - cron: "30 1 * * 1"
pull_request: pull_request:
paths: paths:
- '.github/workflows/plugins.yml' - '.github/workflows/plugins.yml'