remove token input

This commit is contained in:
David Blass
2025-11-11 18:04:54 -05:00
parent 401496f19f
commit cc56089a41
3 changed files with 2 additions and 12 deletions
-6
View File
@@ -18,12 +18,6 @@ async function run(): Promise<void> {
}
try {
// Set GITHUB_TOKEN from input if provided (allows fallback to env var)
const githubTokenInput = core.getInput("github_token");
if (githubTokenInput) {
process.env.GITHUB_TOKEN = githubTokenInput;
}
const inputs: Inputs = {
prompt: core.getInput("prompt", { required: true }),
anthropic_api_key: core.getInput("anthropic_api_key") || undefined,