read github token from inputs

This commit is contained in:
David Blass
2025-11-11 17:56:59 -05:00
parent 8822968cbb
commit 401496f19f
3 changed files with 12 additions and 2 deletions
+5 -1
View File
@@ -40481,7 +40481,7 @@ function query({
// package.json
var package_default = {
name: "@pullfrog/action",
version: "0.0.93",
version: "0.0.94",
type: "module",
files: [
"index.js",
@@ -41560,6 +41560,10 @@ async function run() {
log.debug(`New working directory: ${process.cwd()}`);
}
try {
const githubTokenInput = core3.getInput("github_token");
if (githubTokenInput) {
process.env.GITHUB_TOKEN = githubTokenInput;
}
const inputs = {
prompt: core3.getInput("prompt", { required: true }),
anthropic_api_key: core3.getInput("anthropic_api_key") || void 0
+6
View File
@@ -18,6 +18,12 @@ 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,
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@pullfrog/action",
"version": "0.0.93",
"version": "0.0.94",
"type": "module",
"files": [
"index.js",