Skip to content

Commit 903eb37

Browse files
authored
Prep for 3.10 beta release: Use the main branch (#452)
Closes python/miss-islington#446 Signed-off-by: Mariatta <[email protected]>
1 parent a667688 commit 903eb37

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

miss_islington/tasks.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@
2121

2222
cache = cachetools.LRUCache(maxsize=500)
2323

24+
CHERRY_PICKER_CONFIG = {
25+
"team": "python",
26+
"repo": "cpython",
27+
"check_sha": "7f777ed95a19224294949e1b4ce56bbffcb1fe9f",
28+
"fix_commit_msg": True,
29+
"default_branch": "main",
30+
}
31+
2432

2533
@app.task()
2634
def setup_cpython_repo():
@@ -88,7 +96,11 @@ async def backport_task_asyncio(
8896
)
8997
await util.assign_pr_to_core_dev(gh, issue_number, merged_by)
9098
cp = cherry_picker.CherryPicker(
91-
"origin", commit_hash, [branch], prefix_commit=False
99+
"origin",
100+
commit_hash,
101+
[branch],
102+
config=CHERRY_PICKER_CONFIG,
103+
prefix_commit=False,
92104
)
93105
try:
94106
cp.backport()

0 commit comments

Comments
 (0)