Skip to content
Open
Changes from all commits
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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
ruby-version: 3.0
- name: Create Release Pull Request
id: changesets
uses: changesets/action@v1
uses: changesets/action@v2

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

changesets/action@v2 requires Changesets CLI v3. src/index.ts calls validateChangesetsCliVersion() before anything else and throws because this repo declares @changesets/cli: ^2.26.2 (lockfile resolves 2.31.0 — v2). It will fail with: "...Changesets CLI v2 is not supported; use Changesets action v1 instead...".

Even after fixing that, this same step still passes the removed inputs title/commit/version (v2 throws on these — use pr-title/commit-message/version-script), the env.GITHUB_TOKEN no longer configures the action (use the github-token input), and the downstream gate on line 36 uses the old output hasChangesets (now has-changesets), which would silently disable the gem publish step.

with:
title: 'New Release'
commit: 'Release new version'
Expand Down
Loading