diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-01-30 01:19:24 +0100 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-01-30 01:53:14 +0100 |
commit | 8532e172433ba7d3501cd17352946e6e5c4b9d21 (patch) | |
tree | 1572ebdc7aa2a9b44d627358f2f298b947df3f26 | |
parent | Merge pull request #9705 from behunin/patch-1 (diff) | |
download | yuzu-8532e172433ba7d3501cd17352946e6e5c4b9d21.tar yuzu-8532e172433ba7d3501cd17352946e6e5c4b9d21.tar.gz yuzu-8532e172433ba7d3501cd17352946e6e5c4b9d21.tar.bz2 yuzu-8532e172433ba7d3501cd17352946e6e5c4b9d21.tar.lz yuzu-8532e172433ba7d3501cd17352946e6e5c4b9d21.tar.xz yuzu-8532e172433ba7d3501cd17352946e6e5c4b9d21.tar.zst yuzu-8532e172433ba7d3501cd17352946e6e5c4b9d21.zip |
-rw-r--r-- | .ci/scripts/merge/apply-patches-by-label.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.ci/scripts/merge/apply-patches-by-label.py b/.ci/scripts/merge/apply-patches-by-label.py index 8ddc8ff34..3c5952aa1 100644 --- a/.ci/scripts/merge/apply-patches-by-label.py +++ b/.ci/scripts/merge/apply-patches-by-label.py @@ -20,6 +20,7 @@ def check_individual(labels): def do_page(page): url = 'https://api.github.com/repos/yuzu-emu/yuzu/pulls?page=%s' % page response = requests.get(url) + response.raise_for_status() if (response.ok): j = json.loads(response.content) if j == []: @@ -33,7 +34,7 @@ def do_page(page): print(subprocess.check_output(["git", "commit", "-m\"Merge %s PR %s\"" % (tagline, pn)])) try: - for i in range(1,30): + for i in range(1,10): do_page(i) except: traceback.print_exc(file=sys.stdout) |