Skip to content

Commit 89d02e0

Browse files
committed
Run push events only on release branches, as main has the merge-queue
1 parent 05a3ccd commit 89d02e0

4 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Lint
22

33
on:
44
push:
5+
branches:
6+
- 'release-*' # for main branch we have the merge queue
57
pull_request:
68
merge_group:
79

.github/workflows/test-e2e-bundle.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Bundle E2E Tests
22

33
on:
44
push:
5+
branches:
6+
- 'release-*' # for main branch we have the merge queue
57
pull_request:
68
merge_group:
79

.github/workflows/test-e2e.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: E2E Tests
22

33
on:
44
push:
5+
branches:
6+
- 'release-*' # for main branch we have the merge queue
57
pull_request:
68
merge_group:
79

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Tests
22

33
on:
44
push:
5+
branches:
6+
- 'release-*' # for main branch we have the merge queue
57
pull_request:
68
merge_group:
79

0 commit comments

Comments
 (0)