Skip to content

Commit d057a6f

Browse files
csvirimetacosm
authored andcommitted
branch name fix
1 parent c84feb0 commit d057a6f

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/integration-tests.yml

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Parameterized Integration Tests
33
on:
44
workflow_call:
55
inputs:
6+
branch-name:
7+
type: string
8+
required: true
69
java-version:
710
type: string
811
required: true
@@ -27,6 +30,8 @@ jobs:
2730
- name: Output test information
2831
run: echo "Running ITs with ${{ inputs.http-client }}, ${{ inputs.kube-version }}, ${{ inputs.java-version }}"
2932
- uses: actions/checkout@v4
33+
with:
34+
ref: ${{ inputs.branch-name }}
3035
- name: Set up Java and Maven
3136
uses: actions/setup-java@v3
3237
with:

.github/workflows/pr-fabric8-snapshot-daily.yml

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
with:
4141
java-version: ${{ matrix.java }}
4242
kube-version: ${{ matrix.kubernetes }}
43+
branch-name: fabric8-next-version
4344

4445
httpclient-tests:
4546
strategy:
@@ -51,6 +52,7 @@ jobs:
5152
kube-version: 'v1.25.5'
5253
http-client: ${{ matrix.httpclient }}
5354
experimental: true
55+
branch-name: fabric8-next-version
5456

5557
special_integration_tests:
5658
runs-on: ubuntu-latest

.github/workflows/pr.yml

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
with:
4141
java-version: ${{ matrix.java }}
4242
kube-version: ${{ matrix.kubernetes }}
43+
branch-name: ${GITHUB_REF##*/}
4344

4445
httpclient-tests:
4546
strategy:
@@ -51,6 +52,7 @@ jobs:
5152
kube-version: 'v1.28.2'
5253
http-client: ${{ matrix.httpclient }}
5354
experimental: true
55+
branch-name: ${GITHUB_REF##*/}
5456

5557
special_integration_tests:
5658
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)