From c1079774ab5835455d24374e895ae367bf12bd08 Mon Sep 17 00:00:00 2001 From: James Estevez Date: Tue, 3 Feb 2026 14:08:26 -0800 Subject: [PATCH] fix: correct YAML indentation in feature workflow ## Summary - Fix YAML indentation in feature workflow that caused SFDX auth URL parsing errors ## Details Corrected indentation for the `feature-test` job and `secrets` section. The malformed YAML was causing the dev-hub-auth-url secret to be incorrectly parsed, resulting in "Invalid SFDX authorization URL" errors during workflow execution. ## Test Plan - [ ] Verify workflow runs successfully with proper SFDX auth URL format --- .github/workflows/feature.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/feature.yml b/.github/workflows/feature.yml index 3be451d..5bf1d9c 100644 --- a/.github/workflows/feature.yml +++ b/.github/workflows/feature.yml @@ -3,13 +3,9 @@ on: pull_request: workflow_dispatch: - jobs: - feature-test: - name: "Feature Test" - uses: "SFDO-Community/standard-workflows/.github/workflows/feature.yml@main" - secrets: - dev-hub-auth-url: "${{ secrets.DEV_HUB_AUTH_URL }}" - # with: - # cumulusci-version: '3.93.0' - # sfdx-version: '7.209.6' + feature-test: + name: "Feature Test" + uses: "SFDO-Community/standard-workflows/.github/workflows/feature.yml@main" + secrets: + dev-hub-auth-url: "${{ secrets.DEV_HUB_AUTH_URL }}" \ No newline at end of file