diff --git a/.github/workflows/tests-integration-reusable.yml b/.github/workflows/tests-integration-reusable.yml index 61ae61519b5..c7630e73a52 100644 --- a/.github/workflows/tests-integration-reusable.yml +++ b/.github/workflows/tests-integration-reusable.yml @@ -141,7 +141,7 @@ jobs: chmod +x $install_location/credhub credhub --version - - name: Deploy edge CAPI with Isolation Segment and OIDC Provider + - name: Deploy Isolation Segment and OIDC Provider if: ${{ inputs.capi-version == 'edge' }} env: CF_INT_CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} diff --git a/.github/workflows/tests-integration.yml b/.github/workflows/tests-integration.yml index e08fcb0794a..270e87cd38a 100644 --- a/.github/workflows/tests-integration.yml +++ b/.github/workflows/tests-integration.yml @@ -11,26 +11,26 @@ on: - completed jobs: - run-integration-tests-cf-env-with-edge-capi: - name: Integration tests with EDGE CAPI + run-integration-tests-cf-env: + name: Integration tests if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} uses: ./.github/workflows/tests-integration-reusable.yml with: capi-version: edge run-with-client-creds: false os: ubuntu-latest - name: Integration EDGE CAPI + name: Integration secrets: inherit - run-integration-tests-cf-env-with-edge-capi-with-client-creds: - name: EDGE CAPI and client creds + run-integration-tests-cf-env-with-client-creds: + name: client creds if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} uses: ./.github/workflows/tests-integration-reusable.yml with: capi-version: edge run-with-client-creds: true os: ubuntu-latest - name: Integration EDGE CAPI client creds + name: Integration client creds secrets: inherit run-integration-tests-cf-env-with-min-capi: