Merge pull request #9706 from Morph1984/github-tagged-merge
ci: Abort on failure to query Github's API
This commit is contained in:
commit
07cefe9062
1 changed files with 9 additions and 11 deletions
|
@ -2,15 +2,12 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# Download all pull requests as patches that match a specific label
|
# Download all pull requests as patches that match a specific label
|
||||||
# Usage: python download-patches-by-label.py <Label to Match> <Root Path Folder to DL to>
|
# Usage: python apply-patches-by-label.py <Label to Match>
|
||||||
|
|
||||||
import requests, sys, json, urllib3.request, shutil, subprocess, os, traceback
|
import json, requests, subprocess, sys, traceback
|
||||||
|
|
||||||
tagline = sys.argv[2]
|
tagline = sys.argv[2]
|
||||||
|
|
||||||
http = urllib3.PoolManager()
|
|
||||||
dl_list = {}
|
|
||||||
|
|
||||||
def check_individual(labels):
|
def check_individual(labels):
|
||||||
for label in labels:
|
for label in labels:
|
||||||
if (label["name"] == sys.argv[1]):
|
if (label["name"] == sys.argv[1]):
|
||||||
|
@ -18,8 +15,9 @@ def check_individual(labels):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def do_page(page):
|
def do_page(page):
|
||||||
url = 'https://api.github.com/repos/yuzu-emu/yuzu/pulls?page=%s' % page
|
url = f"https://api.github.com/repos/yuzu-emu/yuzu/pulls?page={page}"
|
||||||
response = requests.get(url)
|
response = requests.get(url)
|
||||||
|
response.raise_for_status()
|
||||||
if (response.ok):
|
if (response.ok):
|
||||||
j = json.loads(response.content)
|
j = json.loads(response.content)
|
||||||
if j == []:
|
if j == []:
|
||||||
|
@ -27,13 +25,13 @@ def do_page(page):
|
||||||
for pr in j:
|
for pr in j:
|
||||||
if (check_individual(pr["labels"])):
|
if (check_individual(pr["labels"])):
|
||||||
pn = pr["number"]
|
pn = pr["number"]
|
||||||
print("Matched PR# %s" % pn)
|
print(f"Matched PR# {pn}")
|
||||||
print(subprocess.check_output(["git", "fetch", "https://github.com/yuzu-emu/yuzu.git", "pull/%s/head:pr-%s" % (pn, pn), "-f", "--no-recurse-submodules"]))
|
print(subprocess.check_output(["git", "fetch", "https://github.com/yuzu-emu/yuzu.git", f"pull/{pn}/head:pr-{pn}", "-f", "--no-recurse-submodules"]))
|
||||||
print(subprocess.check_output(["git", "merge", "--squash", "pr-%s" % pn]))
|
print(subprocess.check_output(["git", "merge", "--squash", f"pr-{pn}"]))
|
||||||
print(subprocess.check_output(["git", "commit", "-m\"Merge %s PR %s\"" % (tagline, pn)]))
|
print(subprocess.check_output(["git", "commit", f"-m\"Merge {tagline} PR {pn}\""]))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
for i in range(1,30):
|
for i in range(1,10):
|
||||||
do_page(i)
|
do_page(i)
|
||||||
except:
|
except:
|
||||||
traceback.print_exc(file=sys.stdout)
|
traceback.print_exc(file=sys.stdout)
|
||||||
|
|
Loading…
Reference in a new issue