diff --git a/.github/workflows/full-test-suite.yml b/.github/workflows/full-test-suite.yml index 683809989..50acfe81f 100644 --- a/.github/workflows/full-test-suite.yml +++ b/.github/workflows/full-test-suite.yml @@ -6,6 +6,7 @@ on: # When changing these triggers, please ensure the documentation under # "Running tests in CI" is still correct. - test-* + workflow_dispatch: jobs: test_and_package_stage: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index bc1bc66a3..68a5d388e 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -3,6 +3,7 @@ name: Nightly build on: schedule: - cron: 30 4 * * * + workflow_dispatch: jobs: test_and_package_stage: diff --git a/.github/workflows/pr-test-suite.yml b/.github/workflows/pr-test-suite.yml index 65b971ae3..ec6bf648e 100644 --- a/.github/workflows/pr-test-suite.yml +++ b/.github/workflows/pr-test-suite.yml @@ -9,6 +9,7 @@ on: branches: - main - "*.x" + workflow_dispatch: concurrency: # https://stackoverflow.com/questions/74117321/if-condition-in-concurrency-in-gha group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}