ci(changesets): fix input name for v1 action (commit-message -> commit) - #374
Merged
Conversation
The changesets/action v1.9.0 input for the version commit message is named 'commit', not 'commit-message'. The latter is a v2 input. Observed on the e2e test run (PR #370 merge to staging): Unexpected input(s) 'commit-message', valid inputs are ['github-token', 'publish', 'version', 'cwd', 'commit', 'title', 'setupGitUser', 'createGithubReleases', 'commitMode', 'branch', 'prDraft'] This commit also requires the org-level setting 'Allow GitHub Actions to create and approve pull requests' to be enabled in Settings → Actions → General. See docs/engineering/plans/release-pipeline-github-ui-setup.md §6.
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
Fixes the
changesets/actioninput name inchangeset-version.yml:commit-message→commit. The former is a v2 input; we're using v1.9.0.Why
The Changesets Version PR workflow failed on the e2e test (PR #370 merge to staging) with:
The action version is pinned at
a45c4d594aa4e2c509dc14a9f2b3b67ba3780d0d(v1.9.0). v1 usescommit, v2 usescommit-message. Mixed up by the original PR.Changes
.github/workflows/changeset-version.yml: rename the inputcommit-messagetocommit.Required follow-up
The workflow also requires the org/repo setting "Allow GitHub Actions to create and approve pull requests" (Settings → Actions → General). This is in
docs/engineering/plans/release-pipeline-github-ui-setup.md§6 but was not yet enabled in the UI. Once both fixes are in place, the next push to staging will open the Version Packages PR.Test plan
pnpm turbo type-checkpasses.pnpm turbo lintpasses.Risk
None. One-word change to a workflow input.
🤖 Generated with Claude Code