Skip to content

Commit cc56089

Browse files
committed
remove token input
1 parent 401496f commit cc56089

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

entry.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40481,7 +40481,7 @@ function query({
4048140481
// package.json
4048240482
var package_default = {
4048340483
name: "@pullfrog/action",
40484-
version: "0.0.94",
40484+
version: "0.0.95",
4048540485
type: "module",
4048640486
files: [
4048740487
"index.js",
@@ -41560,10 +41560,6 @@ async function run() {
4156041560
log.debug(`New working directory: ${process.cwd()}`);
4156141561
}
4156241562
try {
41563-
const githubTokenInput = core3.getInput("github_token");
41564-
if (githubTokenInput) {
41565-
process.env.GITHUB_TOKEN = githubTokenInput;
41566-
}
4156741563
const inputs = {
4156841564
prompt: core3.getInput("prompt", { required: true }),
4156941565
anthropic_api_key: core3.getInput("anthropic_api_key") || void 0

entry.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ async function run(): Promise<void> {
1818
}
1919

2020
try {
21-
// Set GITHUB_TOKEN from input if provided (allows fallback to env var)
22-
const githubTokenInput = core.getInput("github_token");
23-
if (githubTokenInput) {
24-
process.env.GITHUB_TOKEN = githubTokenInput;
25-
}
26-
2721
const inputs: Inputs = {
2822
prompt: core.getInput("prompt", { required: true }),
2923
anthropic_api_key: core.getInput("anthropic_api_key") || undefined,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pullfrog/action",
3-
"version": "0.0.94",
3+
"version": "0.0.95",
44
"type": "module",
55
"files": [
66
"index.js",

0 commit comments

Comments
 (0)