From 82dca0df720b8bcbb56cd41f0195796724085528 Mon Sep 17 00:00:00 2001 From: "Mahadik, Mukul Chandrakant" Date: Thu, 20 Jun 2024 15:42:51 -0700 Subject: [PATCH] Changed branches to run workflow on Not running on main since I will be making code pushes to my feature-branch: automate-tests-actions. Also, created a new branch automate-tests-merge that will be used to test workflow runs whenever a PR is created. This will simulate creating a PR for merging code changes into main in the parent repo. --- .github/workflows/e2etest.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2etest.yaml b/.github/workflows/e2etest.yaml index 0ca6dcf0..92946871 100644 --- a/.github/workflows/e2etest.yaml +++ b/.github/workflows/e2etest.yaml @@ -2,11 +2,9 @@ name: e2etest on: pull_request: - branches: - - main + branches: [ automate-tests-merge ] push: - branches: - - main + branches: [ automate-tests-actions, automate-tests-merge ] schedule: # * is a special character in YAML so you have to quote this string