ci: remove [skip ci] from uv.lock workflow to fix release publishing#1046
Merged
Conversation
Update .github/workflows/update-uv-lock.yml to remove the "[skip ci]" token from the automated commit message that updates uv.lock files. This change ensures CI will run on commits produced by the update-uv-lock workflow (uv.lock, sdks/python/uv.lock, sdks/mcp/uv.lock).
Contributor
There was a problem hiding this comment.
Pull request overview
Removes the [skip ci] marker from the automated uv.lock update commit message so that squash-merge commit bodies can’t accidentally cause GitHub Actions to skip publish workflows on releases.
Changes:
- Update
.github/workflows/update-uv-lock.ymlto commit without[skip ci]in the message.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
mpawlow
approved these changes
Feb 27, 2026
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
[skip ci]from the automated commit message in theupdate-uv-lock.ymlworkflowProblem
The release 0.2.5 merge to
main(#1021) did not trigger the MCP, Python SDK, or TypeScript SDK publish workflows, even though the commit modified all three trigger paths (sdks/mcp/pyproject.toml,sdks/python/pyproject.toml,sdks/typescript/package.json).Root cause: When PR #1021 was squash-merged, GitHub concatenated all intermediate commit messages into the squash commit body. One of those was the automated uv.lock update commit:
GitHub Actions scans the entire commit message (title + body) for
[skip ci]. Finding it in the body caused GitHub to skip all workflows for that push — including the three publish workflows.Why this fix is safe
The
[skip ci]was originally added to prevent the uv.lock commit from re-triggering theupdate-uv-lockworkflow in a loop. However, this is unnecessary because the workflow already uses apathsfilter that only matchespyproject.tomlfiles:A commit that only modifies
uv.lockfiles will never match this filter, so no infinite loop is possible.