ci: auto-update bun.lock on dependabot PRs + skip change detection on manual dispatch#18
Merged
ci: auto-update bun.lock on dependabot PRs + skip change detection on manual dispatch#18
Conversation
workflow_dispatch is an explicit publish request — skip the source-change check that incorrectly blocks it. Also fixes bad revision error when head_sha is empty on manual triggers. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Dependabot only updates package.json; without a matching bun.lock update the CI install --frozen-lockfile fails. This workflow runs bun install --lockfile-only on dependabot PRs and pushes the refreshed lockfile back to the PR branch. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
dependabot-lockfile.ymlworkflow that runsbun install --lockfile-onlyon dependabot PRs and pushes the refreshedbun.lockback to the PR branch, so CI'sbun install --frozen-lockfilestops failing on npm bumps.Why
Dependabot only edits
package.json; bun's lockfile drifts and--frozen-lockfilerejects it. UsesRELEASE_TOKENso the push actually re-triggers CI, and is gated togithub.actor == 'dependabot[bot]'.Test plan
🤖 Generated with Claude Code