Fix push trigger on e2e workflow to refer master branch (#2947)

This commit is contained in:
yasserfaraazkhan 2024-01-17 15:04:37 +05:30 committed by GitHub
parent 504e80e132
commit 20a388bfa1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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' &&