From 8bdef59b5a9df686c7c32e5189a4645304a74f09 Mon Sep 17 00:00:00 2001 From: Javier Briones <1674192+jvbriones@users.noreply.github.com> Date: Sun, 24 Aug 2025 11:49:17 +0200 Subject: [PATCH] ci: disable the google sheet updates for the testing tracker --- .github/scripts/create-platform-release-pr.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/scripts/create-platform-release-pr.sh b/.github/scripts/create-platform-release-pr.sh index 1fda86c0..1a2ad16d 100755 --- a/.github/scripts/create-platform-release-pr.sh +++ b/.github/scripts/create-platform-release-pr.sh @@ -315,11 +315,13 @@ create_changelog_pr() { echo "Generating test plan csv.." yarn run gen:commits "${platform}" "${previous_version}" "${release_branch_name}" "${PROJECT_GIT_DIR}" - if [[ "${TEST_ONLY:-false}" == 'false' ]]; then - echo "Updating release sheet.." - # Create a new Release Sheet Page for the new version with our commits.csv content - yarn run update-release-sheet "${platform}" "${new_version}" "${GOOGLE_DOCUMENT_ID}" "./commits.csv" "${PROJECT_GIT_DIR}" "${MOBILE_TEMPLATE_SHEET_ID}" "${EXTENSION_TEMPLATE_SHEET_ID}" - fi + # Skipping Google Sheets update since there is no need for it anymore + # TODO: Remove this once the current post-main validation approach is stable + # if [[ "${TEST_ONLY:-false}" == 'false' ]]; then + # echo "Updating release sheet.." + # # Create a new Release Sheet Page for the new version with our commits.csv content + # yarn run update-release-sheet "${platform}" "${new_version}" "${GOOGLE_DOCUMENT_ID}" "./commits.csv" "${PROJECT_GIT_DIR}" "${MOBILE_TEMPLATE_SHEET_ID}" "${EXTENSION_TEMPLATE_SHEET_ID}" + # fi cd ../ # Commit and Push Changelog Changes