Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
with:
bun-version: latest
- run: bun install --frozen-lockfile
- run: bunx pkg-pr-new publish
- run: bunx pkg-pr-new publish --bun
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix bunx flag placement: use bunx --bun ... (current command passes --bun to pkg-pr-new).

--bun must precede the executable name to be interpreted by bunx; otherwise it’s forwarded to pkg-pr-new (which doesn’t expose a --bun flag), causing a no-op or error. [bunx docs], [pkg.pr.new docs].

Apply this diff:

-      - run: bunx pkg-pr-new publish --bun
+      - run: bunx --bun pkg-pr-new publish

Refs: bunx requires --bun before the command; pkg.pr.new shows no --bun option. (bun.com)

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- run: bunx pkg-pr-new publish --bun
- run: bunx --bun pkg-pr-new publish
🤖 Prompt for AI Agents
In .github/workflows/ci.yaml around line 46, the workflow currently runs "bunx
pkg-pr-new publish --bun" which incorrectly passes the --bun flag to pkg-pr-new;
move the --bun flag immediately after bunx so the command reads "bunx --bun
pkg-pr-new publish" to ensure bunx interprets the flag and does not forward it
to the pkg-pr-new executable.


spell-check:
runs-on: ubuntu-latest
Expand Down
Loading