Skip to content

Commit

Permalink
branch name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
csviri committed Jun 13, 2023
1 parent f2ea0c3 commit e46b920
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Parameterized Integration Tests
on:
workflow_call:
inputs:
branch-name:
type: string
required: true
java-version:
type: string
required: true
Expand All @@ -27,6 +30,8 @@ jobs:
- name: Output test information
run: echo "Running ITs with ${{ inputs.http-client }}, ${{ inputs.kube-version }}, ${{ inputs.java-version }}"
- uses: actions/checkout@v3
with:
ref: ${{ inputs.branch-name }}
- name: Set up Java and Maven
uses: actions/setup-java@v3
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pr-fabric8-snapshot-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
with:
java-version: ${{ matrix.java }}
kube-version: ${{ matrix.kubernetes }}
branch-name: fabric8-next-version

httpclient-tests:
strategy:
Expand All @@ -51,6 +52,7 @@ jobs:
kube-version: 'v1.25.5'
http-client: ${{ matrix.httpclient }}
experimental: true
branch-name: fabric8-next-version

special_integration_tests:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
with:
java-version: ${{ matrix.java }}
kube-version: ${{ matrix.kubernetes }}
branch-name: ${GITHUB_REF##*/}

httpclient-tests:
strategy:
Expand All @@ -51,6 +52,7 @@ jobs:
kube-version: 'v1.25.5'
http-client: ${{ matrix.httpclient }}
experimental: true
branch-name: ${GITHUB_REF##*/}

special_integration_tests:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e46b920

Please sign in to comment.