From c5b9c7cfc4f08858ee08fdc432edb77814fc5349 Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Tue, 9 Sep 2025 17:19:59 -0700 Subject: [PATCH] Tweak --- .github/workflows/publish.yml | 12 +----------- agents/claude.ts | 5 ++++- entry.cjs | 3 ++- 3 files changed, 7 insertions(+), 13 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4ba929f..cf2a0ab 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -95,24 +95,14 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ steps.version.outputs.tag }} - release_name: "@pullfrog/action ${{ steps.version.outputs.tag }}" + release_name: "${{ steps.version.outputs.tag }}" body: | ## 📦 @pullfrog/action ${{ steps.version.outputs.version }} ### Usage in GitHub Actions - Use the major version tag for automatic updates: ```yaml - uses: pullfrog/action@${{ steps.version.outputs.major_tag }} - with: - message: "Your message here" - ``` - - Or pin to this specific version: - ```yaml - - uses: pullfrog/action@${{ steps.version.outputs.tag }} - with: - message: "Your message here" ``` ### Installation via npm diff --git a/agents/claude.ts b/agents/claude.ts index 3928099..0fe090e 100644 --- a/agents/claude.ts +++ b/agents/claude.ts @@ -59,7 +59,10 @@ export class ClaudeAgent implements Agent { ], env: { ANTHROPIC_API_KEY: this.apiKey }, timeout: 120000, // 2 minute timeout - onStdout: (chunk) => process.stdout.write(chunk), + onStdout: (chunk) => { + // no logs + // process.stdout.write(chunk) + }, onStderr: (chunk) => process.stderr.write(chunk), }); diff --git a/entry.cjs b/entry.cjs index 43ccd10..8779525 100755 --- a/entry.cjs +++ b/entry.cjs @@ -25714,7 +25714,8 @@ var ClaudeAgent = class { env: { ANTHROPIC_API_KEY: this.apiKey }, timeout: 12e4, // 2 minute timeout - onStdout: (chunk) => process.stdout.write(chunk), + onStdout: (chunk) => { + }, onStderr: (chunk) => process.stderr.write(chunk) }); if (result.exitCode !== 0) {