From 73add5de0a45822c43f32cae58165961e9887c46 Mon Sep 17 00:00:00 2001 From: Vikas Basavaraj <5373156+vikasmb@users.noreply.github.com> Date: Mon, 13 Sep 2021 11:56:08 -0700 Subject: [PATCH] Update integ test workflow in release 1.9 branch (#1615) Modified integ test workflow to execute based on push to release 1.9 branch. --- .github/workflows/integration-tests.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 188ca2da99..90da341aa8 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -1,9 +1,14 @@ name: Integration tests on: - # Run on every pull request - pull_request_target: - branches: [ master ] + # Runs on push to master or release branches + push: + branches: + - 'master' + - 'release*' + +permissions: + contents: read jobs: # Branch-based pull request from this repo