fix push-to-action: use CLI direct invocation for token acquisition
the inline `node -e` + `TOKEN=$(...)` approach broke because `core.getIDToken()` in @actions/core writes `::debug::` and `::add-mask::` to stdout, polluting the captured value. `node cli.ts gha token` uses `core.setOutput()` which writes to the $GITHUB_OUTPUT file instead of stdout. Made-with: Cursor
This commit is contained in:
committed by
pullfrog[bot]
parent
61bbfb932e
commit
421607cf97
+1
-1
@@ -6,7 +6,7 @@ import { onExitSignal } from "./exitHandler.ts";
|
||||
import { acquireNewToken } from "./github.ts";
|
||||
import { isGitHubActions } from "./globals.ts";
|
||||
|
||||
// re-export for get-installation-token action
|
||||
// re-export for `pullfrog gha token` subcommand
|
||||
export { acquireNewToken as acquireInstallationToken };
|
||||
export { revokeGitHubInstallationToken as revokeInstallationToken };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user