Skip to content

Commit 2b0ca5e

Browse files
[no-relnote] Fix E2E matrix conditional
Signed-off-by: Carlos Eduardo Arango Gutierrez <[email protected]>
1 parent 0920018 commit 2b0ca5e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/e2e.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939
runs-on: linux-amd64-cpu4
4040
strategy:
4141
matrix:
42-
is_pull_request:
43-
- ${{!( startsWith(github.ref, 'refs/pull/') )}}
42+
ispr:
43+
- ${{ github.ref_name != 'main' && !startsWith( github.ref_name, 'release-' ) }}
4444
driver_branch:
4545
- 550
4646
- 575
4747
exclude:
48-
- is_pull_request: true
48+
- ispr: true
4949
driver_branch: 575
5050
steps:
5151
- name: Check out code

0 commit comments

Comments
 (0)