Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
branches:
- main

- 'release-*'
jobs:
e2e-tests:
strategy:
Expand All @@ -17,7 +17,8 @@ jobs:
- uses: jumpstarter-dev/jumpstarter-e2e@main
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried to replace main with " ${{ github.event.pull_request.base.ref }}" but it seems like github doesn't like it... we can change to release-0.6 e2e branch later on the release branch

with:
controller-ref: ${{ github.ref }}
jumpstarter-ref: main
# use the matching branch on the jumpstarter repo
jumpstarter-ref: ${{ github.event.pull_request.base.ref }}
e2e-tests-28d6b1cc3b49ab9ae176918ab9709a2e2522c97e:
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
branches:
- main
- 'release-*'
pull_request:
branches:
- main
- 'release-*'

jobs:
lint-helm:
Expand Down Expand Up @@ -34,4 +36,4 @@ jobs:
go-version: 1.22

- name: Run go linter
run: make lint
run: make lint
1 change: 1 addition & 0 deletions .github/workflows/pr-kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- main
- 'release-*'

jobs:
deploy-kind:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- main
- 'release-*'

jobs:
tests:
Expand Down
Loading