File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,11 +31,12 @@ jobs:
3131 release-version : ${{ inputs.release-version }}
3232
3333 integration-tests :
34- if : ${{ !inputs.skip-integration-tests }}
3534 permissions :
3635 contents : read
3736 id-token : write
3837 uses : ./.github/workflows/run-integrationtests.yaml
38+ with :
39+ skip-integration-tests : ${{ inputs.skip-integration-tests }}
3940
4041 release-to-github-and-bump :
4142 uses : gardener/cc-utils/.github/workflows/release.yaml@master
Original file line number Diff line number Diff line change 88 - master
99 workflow_dispatch :
1010 workflow_call :
11-
11+ inputs :
12+ skip-integration-tests :
13+ type : boolean
14+ default : false
15+ description : ' Skip running integration tests.'
1216jobs :
1317 run-tests :
18+ if : ${{ !inputs.skip-integration-tests }}
1419 uses : gardener/cc-utils/.github/workflows/run-testmachinery-tests.yaml@master
1520 permissions :
1621 id-token : write
You can’t perform that action at this time.
0 commit comments