Skip to content

Commit b5a83ea

Browse files
committed
Adding CI for dev-v3 branch
When the main branch is for Helm v4, the dev-v3 branch is for Helm v3. Note, the canary release is setup for helm v4 once the v3 branch is created and there is no canary release for v3. Signed-off-by: Matt Farina <[email protected]>
1 parent 2aba8a1 commit b5a83ea

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/build-test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- "main"
6+
- "dev-v3"
67
- "release-**"
78
pull_request:
89
branches:

.github/workflows/codeql-analysis.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ main ]
16+
branches:
17+
- main
18+
- dev-v3
1719
pull_request:
1820
# The branches below must be a subset of the branches above
19-
branches: [ main ]
21+
branches:
22+
- main
23+
- dev-v3
2024
schedule:
2125
- cron: '29 6 * * 6'
2226

0 commit comments

Comments
 (0)