Skip to content

Commit 01086a6

Browse files
authored
Merge pull request #133 from jumpstarter-dev/e2e-testing-release-branches
Testing/Linting release-* stable branches
2 parents 730cac7 + dc3c43d commit 01086a6

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/e2e.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
branches:
66
- main
7-
7+
- 'release-*'
88
jobs:
99
e2e-tests:
1010
strategy:
@@ -17,7 +17,8 @@ jobs:
1717
- uses: jumpstarter-dev/jumpstarter-e2e@main
1818
with:
1919
controller-ref: ${{ github.ref }}
20-
jumpstarter-ref: main
20+
# use the matching branch on the jumpstarter repo
21+
jumpstarter-ref: ${{ github.event.pull_request.base.ref }}
2122
e2e-tests-28d6b1cc3b49ab9ae176918ab9709a2e2522c97e:
2223
runs-on: ubuntu-latest
2324
steps:

.github/workflows/lint.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ on:
44
push:
55
branches:
66
- main
7+
- 'release-*'
78
pull_request:
89
branches:
910
- main
11+
- 'release-*'
1012

1113
jobs:
1214
lint-helm:
@@ -34,4 +36,4 @@ jobs:
3436
go-version: 1.22
3537

3638
- name: Run go linter
37-
run: make lint
39+
run: make lint

.github/workflows/pr-kind.yaml

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

89
jobs:
910
deploy-kind:

.github/workflows/test.yaml

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

89
jobs:
910
tests:

0 commit comments

Comments
 (0)