From f8fa85dc015299a9dcd7927599c8548f39546735 Mon Sep 17 00:00:00 2001 From: Tao He Date: Mon, 18 Dec 2023 15:52:25 +0800 Subject: [PATCH] Enable workflow dispatch event for CIs (#1666) Signed-off-by: Tao He --- .github/workflows/build-test-graph.yml | 1 + .github/workflows/build-test.yml | 1 + .github/workflows/docs.yaml | 1 + .github/workflows/release-latest.yml | 1 + .github/workflows/rust-ci.yml | 1 + .github/workflows/vineyard-operator.yaml | 1 + 6 files changed, 6 insertions(+) diff --git a/.github/workflows/build-test-graph.yml b/.github/workflows/build-test-graph.yml index 716b067f..179be9cb 100644 --- a/.github/workflows/build-test-graph.yml +++ b/.github/workflows/build-test-graph.yml @@ -25,6 +25,7 @@ on: - main paths: - 'modules/graph/**' + workflow_dispatch: concurrency: group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }} diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index cad1aa4b..41061daa 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -27,6 +27,7 @@ on: - '**/*.rst' - '**/*.md' - '**/*.txt' + workflow_dispatch: concurrency: group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }} diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 123cd004..57bd8772 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -21,6 +21,7 @@ on: - main - docs - dev/docs + workflow_dispatch: concurrency: group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }} diff --git a/.github/workflows/release-latest.yml b/.github/workflows/release-latest.yml index c28d5370..109ff7e2 100644 --- a/.github/workflows/release-latest.yml +++ b/.github/workflows/release-latest.yml @@ -18,6 +18,7 @@ on: push: tags: - 'v*' + workflow_dispatch: concurrency: group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }} diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 2419215d..d9c1ee87 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -26,6 +26,7 @@ on: - main paths: - 'rust/**' + workflow_dispatch: concurrency: group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }} diff --git a/.github/workflows/vineyard-operator.yaml b/.github/workflows/vineyard-operator.yaml index e3ca7adb..d140b54b 100644 --- a/.github/workflows/vineyard-operator.yaml +++ b/.github/workflows/vineyard-operator.yaml @@ -36,6 +36,7 @@ on: - 'docker/Dockerfile.vineyardd*' - 'k8s/**' - 'src/server/util/kubectl*' + workflow_dispatch: concurrency: group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }}