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/changeset.yaml

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 left without an auth token

Since v2.0.0 changesets/action no longer accepts the token via the GITHUB_TOKEN environment variable and requires the github-token input instead. The step only sets the env var and passes no github-token, leaving the action without a usable token.

(Refers to this code)

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@a45c4d594aa4e2c509dc14a9f2b3b67ba3780d0d # v1.9.0
uses: changesets/action@198f833dd7d863100ea6e28967bc9a9fdefadb0a # v2.1.0
with:
version: yarn ci:version
publish: yarn ci:publish
Comment on lines 46 to 47

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔴 Release workflow no longer versions or publishes

Since v2.0.0 changesets/action renamed its version and publish inputs to version-script and publish-script, but the step still passes version: and publish:. Under the pinned v2.1.0 these names are ignored, so no version bump or npm publish runs.

Suggested change
version: yarn ci:version
publish: yarn ci:publish
version-script: yarn ci:version
publish-script: yarn ci:publish
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

Expand Down
Loading