From e9d0f89f52111427a4a1a78790a469a089b1c409 Mon Sep 17 00:00:00 2001 From: "Chang, Hui-Tang" Date: Mon, 25 Sep 2023 12:49:15 +0800 Subject: [PATCH] ci(workflow): update GA workflow triggering event (#360) Because - we only need to run release related workflow in branch `release-please--branches--main` and tags event This commit - update GA workflow triggering event --- .github/workflows/helm-integration-test-release.yml | 5 +++++ .github/workflows/integration-test-release.yml | 5 +++++ .github/workflows/make-all.yml | 5 +++-- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/helm-integration-test-release.yml b/.github/workflows/helm-integration-test-release.yml index e4599609..728e9888 100644 --- a/.github/workflows/helm-integration-test-release.yml +++ b/.github/workflows/helm-integration-test-release.yml @@ -2,6 +2,11 @@ name: Helm Integration Test (release) on: workflow_dispatch: + push: + branches: + - release-please--branches--main + tags: + - v* jobs: backend: diff --git a/.github/workflows/integration-test-release.yml b/.github/workflows/integration-test-release.yml index 1beb3246..09dc0bee 100644 --- a/.github/workflows/integration-test-release.yml +++ b/.github/workflows/integration-test-release.yml @@ -2,6 +2,11 @@ name: Integration Test (release) on: workflow_dispatch: + push: + branches: + - release-please--branches--main + tags: + - v* jobs: backend: diff --git a/.github/workflows/make-all.yml b/.github/workflows/make-all.yml index 36d34e39..cd34203f 100644 --- a/.github/workflows/make-all.yml +++ b/.github/workflows/make-all.yml @@ -2,10 +2,11 @@ name: Make All on: workflow_dispatch: - pull_request: push: branches: - - main + - release-please--branches--main + tags: + - v* jobs: make-all: