summaryrefslogtreecommitdiff
path: root/.ci/scripts/merge/apply-patches-by-label.py
diff options
context:
space:
mode:
Diffstat (limited to '.ci/scripts/merge/apply-patches-by-label.py')
-rw-r--r--.ci/scripts/merge/apply-patches-by-label.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/.ci/scripts/merge/apply-patches-by-label.py b/.ci/scripts/merge/apply-patches-by-label.py
index 3c5952aa1..a31c0aac4 100644
--- a/.ci/scripts/merge/apply-patches-by-label.py
+++ b/.ci/scripts/merge/apply-patches-by-label.py
@@ -18,7 +18,7 @@ def check_individual(labels):
18 return False 18 return False
19 19
20def do_page(page): 20def do_page(page):
21 url = 'https://api.github.com/repos/yuzu-emu/yuzu/pulls?page=%s' % page 21 url = f"https://api.github.com/repos/yuzu-emu/yuzu/pulls?page={page}"
22 response = requests.get(url) 22 response = requests.get(url)
23 response.raise_for_status() 23 response.raise_for_status()
24 if (response.ok): 24 if (response.ok):
@@ -28,10 +28,10 @@ def do_page(page):
28 for pr in j: 28 for pr in j:
29 if (check_individual(pr["labels"])): 29 if (check_individual(pr["labels"])):
30 pn = pr["number"] 30 pn = pr["number"]
31 print("Matched PR# %s" % pn) 31 print(f"Matched PR# {pn}")
32 print(subprocess.check_output(["git", "fetch", "https://github.com/yuzu-emu/yuzu.git", "pull/%s/head:pr-%s" % (pn, pn), "-f", "--no-recurse-submodules"])) 32 print(subprocess.check_output(["git", "fetch", "https://github.com/yuzu-emu/yuzu.git", f"pull/{pn}/head:pr-{pn}", "-f", "--no-recurse-submodules"]))
33 print(subprocess.check_output(["git", "merge", "--squash", "pr-%s" % pn])) 33 print(subprocess.check_output(["git", "merge", "--squash", f"pr-{pn}"]))
34 print(subprocess.check_output(["git", "commit", "-m\"Merge %s PR %s\"" % (tagline, pn)])) 34 print(subprocess.check_output(["git", "commit", f"-m\"Merge {tagline} PR {pn}\""]))
35 35
36try: 36try:
37 for i in range(1,10): 37 for i in range(1,10):