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
4 changes: 2 additions & 2 deletions .github/scripts/create-platform-release-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -378,9 +378,9 @@ create_changelog_pr() {

# Commit and Push Changelog Changes (exclude commits.csv)
echo "Adding and committing changes.."
local commit_msg="update changelog for ${new_version}"
local commit_msg="update changelog for ${new_version} [skip-e2e]"
if [[ "${previous_version_ref,,}" == "null" ]]; then
commit_msg="${commit_msg} (hotfix - no test plan)"
commit_msg="${commit_msg} (hotfix - no test plan) [skip-e2e]"

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: Duplicate Skip Tags in Hotfix Messages

Hotfix release commit messages contain duplicate [skip-e2e] tags. The tag is included in the initial message assignment and then appended again when the hotfix-specific text is added.

Fix in Cursor Fix in Web

fi
if ! (git commit -am "${commit_msg}"); then
echo "No changes detected; skipping commit."
Expand Down
Loading