From 99cad087b9c124f48c67f09dd6206b6ba2473e0f Mon Sep 17 00:00:00 2001 From: Francesco Chemolli Date: Tue, 31 Dec 2024 09:23:38 +0000 Subject: [PATCH] CI: add workflow_dispatch trigger to all workflows --- .github/workflows/quick.yaml | 2 ++ .github/workflows/slow.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/quick.yaml b/.github/workflows/quick.yaml index aad03461d4a..b8ebdb0754f 100644 --- a/.github/workflows/quick.yaml +++ b/.github/workflows/quick.yaml @@ -16,6 +16,8 @@ on: # test PRs targeting this branch code branches: [ "master" ] + workflow_dispatch: + concurrency: # Cancel ongoing tests in case of push to the same PR or staging branch, # but let previous master commit tests complete. diff --git a/.github/workflows/slow.yaml b/.github/workflows/slow.yaml index 728445b6560..59bd033aed0 100644 --- a/.github/workflows/slow.yaml +++ b/.github/workflows/slow.yaml @@ -14,6 +14,8 @@ on: push: branches: [ "auto" ] + workflow_dispatch: + concurrency: # Cancel ongoing tests in case of push to staging branch. group: ${{ github.workflow }}-${{ github.ref }}