From 32e8032ce3b6063e0c198f577b4fbdbf483cf870 Mon Sep 17 00:00:00 2001 From: Javier Briones <1674192+jvbriones@users.noreply.github.com> Date: Thu, 11 Sep 2025 18:31:52 +0200 Subject: [PATCH] chore: skip E2E tests on change-log generation --- .github/scripts/create-platform-release-pr.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/create-platform-release-pr.sh b/.github/scripts/create-platform-release-pr.sh index 3a11e17b..d1de79b1 100755 --- a/.github/scripts/create-platform-release-pr.sh +++ b/.github/scripts/create-platform-release-pr.sh @@ -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]" fi if ! (git commit -am "${commit_msg}"); then echo "No changes detected; skipping commit."