We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
main
1 parent a667688 commit 903eb37Copy full SHA for 903eb37
miss_islington/tasks.py
@@ -21,6 +21,14 @@
21
22
cache = cachetools.LRUCache(maxsize=500)
23
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
+
32
33
@app.task()
34
def setup_cpython_repo():
@@ -88,7 +96,11 @@ async def backport_task_asyncio(
88
96
)
89
97
await util.assign_pr_to_core_dev(gh, issue_number, merged_by)
90
98
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,
92
104
93
105
try:
94
106
cp.backport()
0 commit comments