From 30ddb4e4e145ae87c26acf3c695448411c8d5aeb Mon Sep 17 00:00:00 2001 From: metamaskbot Date: Fri, 3 Oct 2025 09:00:12 +0200 Subject: [PATCH] fix(sign off list): remove legacy list of teams --- .github/scripts/create-platform-release-pr.sh | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/scripts/create-platform-release-pr.sh b/.github/scripts/create-platform-release-pr.sh index b72ef3d6..1a26b266 100755 --- a/.github/scripts/create-platform-release-pr.sh +++ b/.github/scripts/create-platform-release-pr.sh @@ -260,22 +260,21 @@ create_release_pr() { fi fi + local platform_team_name + if [ "$platform" = "extension" ]; then + platform_team_name="Extension Platform" + elif [ "$platform" = "mobile" ]; then + platform_team_name="Mobile Platform" + else + echo "Error: Unknown platform '$platform'. Must be 'extension' or 'mobile'." + exit 1 + fi + # Prepare release PR body with team sign-off checklist local release_body="This is the release candidate for version ${new_version}. The changelog will be found in another PR ${changelog_branch_name}. # Team sign-off checklist - - [ ] team-accounts - - [ ] team-assets - - [ ] team-confirmations - - [ ] team-design-system - - [ ] team-notifications - - [ ] team-platform - - [ ] team-security - - [ ] team-snaps-platform - - [ ] team-sdk - - [ ] team-stake - - [ ] team-tiger - - [ ] team-wallet-framework + - [ ] ${platform_team_name} # Reference - Testing plan sheet - https://docs.google.com/spreadsheets/d/1tsoodlAlyvEUpkkcNcbZ4PM9HuC9cEM80RZeoVv5OCQ/edit?gid=404070372#gid=404070372"