From 6471f3787ab4ba46bdc8ec72058474a385e17acb Mon Sep 17 00:00:00 2001 From: Joshua Temple Date: Mon, 6 Jul 2026 04:53:26 -0400 Subject: [PATCH] fix(ci): pass the action-pins path to the self-heal own-repo reconcile Signed-off-by: Joshua Temple --- .github/workflows/pin-reconcile.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pin-reconcile.yaml b/.github/workflows/pin-reconcile.yaml index e98075e2..33c2019d 100644 --- a/.github/workflows/pin-reconcile.yaml +++ b/.github/workflows/pin-reconcile.yaml @@ -181,7 +181,9 @@ jobs: done < changed-files.txt # Own-repo mode writes the adopted ref into internal/generate/action_pins.yaml # and regenerates every generated workflow so they agree again. - cascade reconcile --own-repo "${args[@]}" + # --action-pins names the manifest on disk; it has no default, so it + # must be passed explicitly here. + cascade reconcile --own-repo --action-pins internal/generate/action_pins.yaml "${args[@]}" - name: Commit and push the reconciled pins if: steps.resolve.outputs.proceed == 'true'