-
Notifications
You must be signed in to change notification settings - Fork 9
chore(release): promote next to production (2026-06-01) #528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
e1f1cf6
feat(slack-oauth-backend): expand OAuth scope requests to match app m…
wkoutre a48592e
fix(slack-oauth-backend): drop incoming-webhook bot scope (#518)
wkoutre 7d0d6a3
chore(sync): [skip ci] sync next with main
hello-happy-puppy 80ac06e
chore(slack-oauth-backend): log OAuth request and Slack-granted scope…
wkoutre 07fdbd9
chore(sync): [skip ci] sync next with main
hello-happy-puppy 0e09ace
chore(sync): [skip ci] sync next with main
hello-happy-puppy c431f5b
fix(workflows): replace sed-with-pipe-delimiter with python str.repla…
dgilmanuni 09491fb
fix(claude-task-worker): harden against prompt injection (#514)
dgilmanuni dab0e80
fix(workflows): set BUN_CONFIG_FILE=/dev/null in remaining workflows …
dgilmanuni 776e81f
fix(workflows): allowlist toolkit_ref to block fork-branch RCE (#510)
dgilmanuni 8356485
fix(workflows): tighten bullfrog allowlists per workflow (#516)
dgilmanuni 27e7e2d
fix(slack-oauth-backend): use fresh bot token, drop SLACK_BOT_TOKEN (…
wkoutre File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Semgrep identified an issue in your code:
Reusable workflow (on: workflow_call) uses
bun run. Bun auto-loads bunfig.toml from CWD, and its preload array executes arbitrary code before the intended script. If the workflow checks out fork PR code, this enables RCE with access to the caller's secrets. Fix: set BUN_CONFIG_FILE=/dev/null in the job env.To resolve this comment:
✨ Commit fix suggestion
View step-by-step instructions
BUN_CONFIG_FILEto/dev/nullto prevent Bun from auto-loading an attacker-controlled configuration file.BUN_CONFIG_FILE=/dev/null bun run "$POST_SCRIPT" $SCRIPT_ARGS.This protects the workflow from remote code execution via malicious
bunfig.tomlfiles in forked pull requests.💬 Ignore this finding
Reply with Semgrep commands to ignore this finding.
/fp <comment>for false positive/ar <comment>for acceptable risk/other <comment>for all other reasonsAlternatively, triage in Semgrep AppSec Platform to ignore the finding created by bun-run-in-reusable-workflow.
You can view more details about this finding in the Semgrep AppSec Platform.