Use the correct base branch in create-change.py (#13017)

Blue committed Jun 2, 2025 at 18:36 UTC a630dbc613e264e1c14e1551f7737893640e6cef
1 file changed +1 -1
tools/devops/create-change.py
+1 -1
@@ -41,7 +41,7 @@ def main(repo_path: str, token: str, commiter: str, message: str, branch: str, d
41 'title': message,
42 'description': 'Automated change',
43 'head': branch,
44 - 'base': 'main'
44 + 'base': 'master'
45 }
46
47 response = requests.post(f'https://api.github.com/repos/{REPO}/pulls', headers=headers, data=json.dumps(body), timeout=30)