Remove connect handling

This commit is contained in:
Jill Regan
2026-02-18 18:00:42 -05:00
parent d456b72513
commit af49dd18de
2 changed files with 0 additions and 17 deletions

View File

@@ -205,18 +205,3 @@ jobs:
- name: Assert removed secrets [exported env] - name: Assert removed secrets [exported env]
if: ${{ matrix.export-env }} if: ${{ matrix.export-env }}
run: ./tests/assert-env-unset.sh run: ./tests/assert-env-unset.sh
- name: Load secrets (invalid ref - expect failure)
id: load_invalid
continue-on-error: true
uses: ./
env:
BAD_REF: "op://x"
with:
export-env: true
- name: Assert invalid ref failed
shell: bash
run: ./tests/assert-invalid-ref-failed.sh
env:
STEP_OUTCOME: ${{ steps.load_invalid.outcome }}

View File

@@ -125,8 +125,6 @@ const loadSecretsViaConnect = async (
} }
const envs = res.stdout.replace(/\n+$/g, "").split(/\r?\n/); const envs = res.stdout.replace(/\n+$/g, "").split(/\r?\n/);
validateSecretRefs(envs);
for (const envName of envs) { for (const envName of envs) {
extractSecret(envName, shouldExportEnv); extractSecret(envName, shouldExportEnv);
} }