From f3fafe59c428f41d158d97bbd0ac4ba42c565323 Mon Sep 17 00:00:00 2001 From: michaeldeongreen Date: Sat, 9 May 2026 04:10:56 -0500 Subject: [PATCH] Add checkout step to reusable-fabric-etl workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Phase 1 extracted inline Python from this workflow into scripts/run_fabric_etl.py but the corresponding actions/checkout step was never added. The other two refactored reusables (reusable-deploy-supported.yml, reusable-deploy-bulk.yml) both have it; only this one was missed. Without checkout, the runner has no scripts/ directory and the python invocation fails with 'No such file or directory'. The Phase 1 refactor's test-environment ETL run looked successful because workflow_run-triggered workflows execute the workflow file from the default branch — at that moment main still held the pre-refactor inline-Python version. The bug surfaced as soon as PR #24 promoted the refactored workflow to main, breaking the next prod ETL run. --- .github/workflows/reusable-fabric-etl.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/reusable-fabric-etl.yml b/.github/workflows/reusable-fabric-etl.yml index 23497be..1885dbc 100644 --- a/.github/workflows/reusable-fabric-etl.yml +++ b/.github/workflows/reusable-fabric-etl.yml @@ -51,6 +51,9 @@ jobs: timeout-minutes: 60 environment: ${{ inputs.environment }} steps: + - name: Checkout repository + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 + - name: Set up Python uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6 with: