Skip to content
Closed
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/scripts/create-platform-release-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ create_changelog_pr() {
echo "Generating changelog for extension via yarn auto-changelog.."
yarn auto-changelog update --rc --repo "${GITHUB_REPOSITORY_URL}" --currentVersion "${new_version}" --autoCategorize --useChangelogEntry --useShortPrLink
else
echo "Generating changelog for mobile via npx @metamask/auto-changelog@4.1.0.."
echo "Generating changelog for mobile via yarn auto-changelog.."
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Bug: Changelog Script Uses Outdated Command

The script logs that it's generating the mobile changelog via yarn auto-changelog, but the actual command executed still uses npx @metamask/auto-changelog@4.1.0. This inconsistency means the intended fix for the problematic npx command was not fully applied, and the original error will likely persist.

Fix in Cursor Fix in Web

npx @metamask/auto-changelog@4.1.0 update --rc --repo "${GITHUB_REPOSITORY_URL}" --currentVersion "${new_version}" --autoCategorize
fi

Expand Down
Loading