Compare commits

...

3 Commits

Author SHA1 Message Date
David Blass 75cb3ecf08 add openai input 2025-11-13 16:37:27 -05:00
David Blass 4530267429 bump version 2025-11-13 16:17:10 -05:00
David Blass c1014857e0 update husky 2025-11-13 16:16:53 -05:00
4 changed files with 14 additions and 11 deletions
+9 -9
View File
@@ -1,12 +1,12 @@
# Ensure lockfile is up to date if package.json changed # Ensure lockfile is up to date if package.json changed
if git diff --cached --name-only | grep -q "^package.json$"; then if git diff --cached --name-only | grep -q "^package.json$"; then
echo "🔒 Updating lockfile..." echo "🔒 Updating lockfile..."
pnpm lock pnpm lock
# Build the action before committing
echo "🔨 Building action..."
pnpm build
# Add the built files and lockfile to the commit
git add entry.js mcp-server.js pnpm-lock.yaml
fi fi
# Build the action before committing
echo "🔨 Building action..."
pnpm build
# Add the built files and lockfile to the commit
git add entry.js mcp-server.js pnpm-lock.yaml
+3
View File
@@ -10,6 +10,9 @@ inputs:
anthropic_api_key: anthropic_api_key:
description: "Anthropic API key for Claude Code authentication" description: "Anthropic API key for Claude Code authentication"
required: false required: false
openai_api_key:
description: "OpenAI API key for Codex authentication"
required: false
runs: runs:
using: "node20" using: "node20"
+1 -1
View File
@@ -40479,7 +40479,7 @@ function query({
// package.json // package.json
var package_default = { var package_default = {
name: "@pullfrog/action", name: "@pullfrog/action",
version: "0.0.98", version: "0.0.100",
type: "module", type: "module",
files: [ files: [
"index.js", "index.js",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@pullfrog/action", "name": "@pullfrog/action",
"version": "0.0.98", "version": "0.0.100",
"type": "module", "type": "module",
"files": [ "files": [
"index.js", "index.js",