From a00e57014c2d4d7b1522d441bd8eeb19cff14d8d Mon Sep 17 00:00:00 2001 From: Khai Do Date: Sat, 3 Feb 2024 10:09:08 -0800 Subject: [PATCH] stop duplicate gate workflow runs The integration tests is triggered twice on force pushes to master. We only want it to run once. * trigger integration tests on merges to master branch * trigger integration tests on creation of branches from PRs * do not trigger integration tests twice only run integration tests once --- .github/workflows/gate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gate.yaml b/.github/workflows/gate.yaml index 8a742bf2a..d0d5600a0 100644 --- a/.github/workflows/gate.yaml +++ b/.github/workflows/gate.yaml @@ -7,7 +7,7 @@ on: types: - completed branches: - - '*' + - master jobs: integration-tests: