Skip to content

Commit 30ddb4e

Browse files
committed
fix(sign off list): remove legacy list of teams
1 parent 6c47e93 commit 30ddb4e

1 file changed

Lines changed: 11 additions & 12 deletions

File tree

.github/scripts/create-platform-release-pr.sh

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -260,22 +260,21 @@ create_release_pr() {
260260
fi
261261
fi
262262

263+
local platform_team_name
264+
if [ "$platform" = "extension" ]; then
265+
platform_team_name="Extension Platform"
266+
elif [ "$platform" = "mobile" ]; then
267+
platform_team_name="Mobile Platform"
268+
else
269+
echo "Error: Unknown platform '$platform'. Must be 'extension' or 'mobile'."
270+
exit 1
271+
fi
272+
263273
# Prepare release PR body with team sign-off checklist
264274
local release_body="This is the release candidate for version ${new_version}. The changelog will be found in another PR ${changelog_branch_name}.
265275
266276
# Team sign-off checklist
267-
- [ ] team-accounts
268-
- [ ] team-assets
269-
- [ ] team-confirmations
270-
- [ ] team-design-system
271-
- [ ] team-notifications
272-
- [ ] team-platform
273-
- [ ] team-security
274-
- [ ] team-snaps-platform
275-
- [ ] team-sdk
276-
- [ ] team-stake
277-
- [ ] team-tiger
278-
- [ ] team-wallet-framework
277+
- [ ] ${platform_team_name}
279278
280279
# Reference
281280
- Testing plan sheet - https://docs.google.com/spreadsheets/d/1tsoodlAlyvEUpkkcNcbZ4PM9HuC9cEM80RZeoVv5OCQ/edit?gid=404070372#gid=404070372"

0 commit comments

Comments
 (0)