Fix push trigger on e2e workflow to refer master branch (#2947)
This commit is contained in:
6
.github/workflows/e2e-functional.yml
vendored
6
.github/workflows/e2e-functional.yml
vendored
@@ -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' &&
|
||||
|
Reference in New Issue
Block a user