From be39ae10857d2df0aa9f56f412d85d2af714089d Mon Sep 17 00:00:00 2001 From: Claude Auto-Fix Date: Sat, 9 May 2026 22:29:47 -0400 Subject: [PATCH] fix(claude-command-router): use absolute ref for check-auth (#262) \`uses: ./check-auth\` resolved into the consumer's workspace when invoked from an external repo, breaking the action. Absolute ref \`glitchwerks/github-actions/check-auth@v2\` resolves from this library's tree regardless of consumer. --- claude-command-router/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/claude-command-router/action.yml b/claude-command-router/action.yml index 1fff4c3..101d8bd 100644 --- a/claude-command-router/action.yml +++ b/claude-command-router/action.yml @@ -30,7 +30,7 @@ runs: steps: - name: Check authorization id: authz - uses: ./check-auth + uses: glitchwerks/github-actions/check-auth@v2 with: authorized_users: ${{ inputs.authorized_users }}