Use the correct base branch in create-change.py

This commit is contained in:
Blue 2025-05-30 18:11:10 -07:00
parent 9cd3438a2f
commit fce29932d8

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)