diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 6366ed5071..bc0ad0b3bc 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -13,7 +13,11 @@ on: branches: - '*' schedule: - - cron: 0 6 * * * + # Run every Monday at 8am UTC + - cron: 0 8 * * 1 + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: # Force to use color env: diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index ed08a23dde..04532ab7f5 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -3,9 +3,11 @@ name: Codespell on: push: - branches: [main] + branches: + - main pull_request: - branches: [main] + branches: + - '*' jobs: codespell: diff --git a/.github/workflows/detect_test_pollution.yml b/.github/workflows/detect_test_pollution.yml index 1be735b7a5..df3c9a23dc 100644 --- a/.github/workflows/detect_test_pollution.yml +++ b/.github/workflows/detect_test_pollution.yml @@ -23,7 +23,8 @@ on: # │ │ │ │ │ # * * * * * schedule: - - cron: 0 0 25 * * # on the 25th of every monday + # Run first day of the month at midnight UTC + - cron: 0 0 1 * * # Allows you to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/.github/workflows/numpy2_compatibility.yml b/.github/workflows/numpy2_compatibility.yml index af5ab4cd02..f05471e965 100644 --- a/.github/workflows/numpy2_compatibility.yml +++ b/.github/workflows/numpy2_compatibility.yml @@ -4,14 +4,11 @@ name: Numpy2 compatibility on: - - pull_request: - branches: - - '*' - + push: + branches: [main] schedule: - # Run every day at 8am UTC - - cron: 0 8 * * * + # Run every Monday at 8am UTC + - cron: 0 8 * * 1 workflow_dispatch: # Force to use color diff --git a/.github/workflows/testing_minimum.yml b/.github/workflows/testing_minimum.yml index f8f8e9e07d..6c9f94a6de 100644 --- a/.github/workflows/testing_minimum.yml +++ b/.github/workflows/testing_minimum.yml @@ -23,7 +23,8 @@ on: # │ │ │ │ │ # * * * * * schedule: - - cron: 0 0 1 * * # every first day of the month + # Run first day of the month at midnight UTC + - cron: 0 0 1 * * # Allows you to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/.github/workflows/update_precommit_hooks.yml b/.github/workflows/update_precommit_hooks.yml index f822347b8e..b612dfc2fe 100644 --- a/.github/workflows/update_precommit_hooks.yml +++ b/.github/workflows/update_precommit_hooks.yml @@ -18,7 +18,8 @@ on: # │ │ │ │ │ # * * * * * schedule: - - cron: 0 0 * * 1 # every monday + # Run first day of the month at midnight UTC + - cron: 0 0 1 * * # Allows you to run this workflow manually from the Actions tab workflow_dispatch: