Skip to content

Commit 62fc84d

Browse files
authored
Add CI for release branches (#337)
<!-- Thank you for proposing a pull request! Please note that SOME TESTS WILL LIKELY FAIL due to how GitHub exposes secrets in Pull Requests from forks. Someone from the team will review your Pull Request and respond. Please describe your change and any implementation details below. -->
1 parent 10f7d5a commit 62fc84d

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/integration.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ name: 'Integration'
33
on:
44
push:
55
branches:
6-
- 'main'
6+
- 'main'
7+
- 'release/**/*'
78
pull_request:
89
branches:
9-
- 'main'
10+
- 'main'
11+
- 'release/**/*'
1012
workflow_dispatch:
1113

1214
concurrency:

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- 'main'
7+
- 'release/**/*'
78

89
jobs:
910
release:

.github/workflows/unit.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ name: 'Unit'
33
on:
44
push:
55
branches:
6-
- 'main'
6+
- 'main'
7+
- 'release/**/*'
78
pull_request:
89
branches:
9-
- 'main'
10+
- 'main'
11+
- 'release/**/*'
1012
workflow_dispatch:
1113

1214
concurrency:

0 commit comments

Comments
 (0)