This commit is contained in:
Colin McDonnell
2025-09-09 17:19:59 -07:00
parent 7a14716481
commit c5b9c7cfc4
3 changed files with 7 additions and 13 deletions
+1 -11
View File
@@ -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
+4 -1
View File
@@ -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),
});
+2 -1
View File
@@ -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) {