Skip to content

Commit 7e0dcec

Browse files
committed
Enable tests for release branch
Signed-off-by: Jiaxin Shan <seedjeffwan@gmail.com>
1 parent ccf92c6 commit 7e0dcec

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/docker-build-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Docker Build Images
22

33
on:
44
pull_request:
5-
branches: [ "main" ]
5+
branches: [ "main", "release-*" ]
66

77
jobs:
88
build:

.github/workflows/docker-push-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Docker Push Images
22

33
on:
44
push:
5-
branches: [ "main", "release-*"]
5+
branches: [ "main", "release-*" ]
66

77
jobs:
88
build:

.github/workflows/installation-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Installation Tests
33
on:
44
workflow_dispatch: # Allows manual trigger
55
push:
6-
branches: [ "main" ]
6+
branches: [ "main", "release-*" ]
77
paths:
88
- '.github/workflows/**'
99
- 'build/container/**'

.github/workflows/lint-and-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Linter and Unit Tests
33
on:
44
workflow_dispatch: # Allows manual trigger
55
push:
6-
branches: [ "main" ]
6+
branches: [ "main", "release-*" ]
77
paths:
88
- 'pkg/**'
99
- 'cmd/**'

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Python Tests
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "release-*" ]
66
paths:
77
- 'python/**'
88
pull_request:

0 commit comments

Comments
 (0)