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

This commit is contained in:
Blue 2025-06-02 18:36:59 +00:00 committed by GitHub
parent 9cd3438a2f
commit a630dbc613
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,7 +41,7 @@ def main(repo_path: str, token: str, commiter: str, message: str, branch: str, d
'title': message,
'description': 'Automated change',
'head': branch,
'base': 'main'
'base': 'master'
}
response = requests.post(f'https://api.github.com/repos/{REPO}/pulls', headers=headers, data=json.dumps(body), timeout=30)