Skip to content

Commit 86f8aef

Browse files
committed
create_release.py: Use org prefix for team reviewers in gh pr create
Followup to 87cf1b0.
1 parent 87cf1b0 commit 86f8aef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/maint/create_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def create_release_pr(release_version, dry_run):
7676
# Push the new branch to emscripten repo and create PR
7777
repo_url = get_repo_url()
7878
subprocess.check_call(['git', 'push', repo_url, branch_name], cwd=root_dir)
79-
subprocess.check_call(['gh', 'pr', 'create', '--fill', '--reviewer', 'release-reviewers', '--head', branch_name, '-R', REPO], cwd=root_dir)
79+
subprocess.check_call(['gh', 'pr', 'create', '--fill', '--reviewer', 'emscripten-core/release-reviewers', '--head', branch_name, '-R', REPO], cwd=root_dir)
8080

8181

8282
def create_draft_release(version, base_commit):

0 commit comments

Comments
 (0)