From 20a388bfa152073644d433b7f05086b02d250eb1 Mon Sep 17 00:00:00 2001 From: yasserfaraazkhan Date: Wed, 17 Jan 2024 15:04:37 +0530 Subject: [PATCH] Fix push trigger on e2e workflow to refer master branch (#2947) --- .github/workflows/e2e-functional.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-functional.yml b/.github/workflows/e2e-functional.yml index c50a7507..d31f41c2 100644 --- a/.github/workflows/e2e-functional.yml +++ b/.github/workflows/e2e-functional.yml @@ -58,7 +58,7 @@ jobs: github.event_name == 'workflow_dispatch' ) || ( - github.event_name == 'push' && github.ref == 'refs/heads/main' + github.event_name == 'push' && github.ref == 'refs/heads/master' ) || ( github.event_name == 'pull_request' && @@ -137,7 +137,7 @@ jobs: github.event_name == 'workflow_dispatch' ) || ( - github.event_name == 'push' && github.ref == 'refs/heads/main' + github.event_name == 'push' && github.ref == 'refs/heads/master' ) || ( github.event_name == 'pull_request' && @@ -227,7 +227,7 @@ jobs: github.event_name == 'workflow_dispatch' ) || ( - github.event_name == 'push' && github.ref == 'refs/heads/main' + github.event_name == 'push' && github.ref == 'refs/heads/master' ) || ( github.event_name == 'pull_request' &&