Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ inputs:
path_to_bun_executable:
description: "Optional path to a custom Bun executable. If provided, skips automatic Bun installation and uses this executable instead. WARNING: Using an incompatible version may cause problems if the action requires specific Bun features. This input is typically not needed unless you're debugging something specific or have unique needs in your environment."
required: false
default: ""
default: "/usr/local/bin/bun"
display_report:
description: "Whether to display the Claude Code Report in GitHub Step Summary. Set to 'false' to disable when using custom formatting solutions. WARNING: This outputs Claude-authored content in the GitHub Step Summary. This should only be used in cases where the action is used solely with trusted input."
required: false
Expand Down Expand Up @@ -193,7 +193,7 @@ runs:
shell: bash
run: |
cd ${GITHUB_ACTION_PATH}
bun install --production
bun install --registry=https://npm-registry-proxy.pipedrive.tools --production

- name: Install subprocess isolation dependencies
# Install subprocess isolation dependencies when processing content from non-write users.
Expand Down
3 changes: 0 additions & 3 deletions bunfig.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
# Intentionally minimal. action.yml pins --config to this file so bun resolves
# its runtime config from the action directory rather than the workspace.

[install]
registry = "https://npm-registry-proxy.pipedrive.tools"