summaryrefslogtreecommitdiff
path: root/.ci/scripts/merge/apply-patches-by-label.py
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-11-16 22:26:54 -0500
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-11-16 22:26:54 -0500
commit16aa49d13864661a2ba4568f36dfb21a05443afb (patch)
tree96340390384f0bf2ec69ca44b8b2127735b4c334 /.ci/scripts/merge/apply-patches-by-label.py
parent71313509f75aeafe425e531824d1faa9e7c0a40b (diff)
ci: Don't fetch submodules when fetching PRs
Diffstat (limited to '.ci/scripts/merge/apply-patches-by-label.py')
-rw-r--r--.ci/scripts/merge/apply-patches-by-label.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/scripts/merge/apply-patches-by-label.py b/.ci/scripts/merge/apply-patches-by-label.py
index b2e430ac7..c288a70a1 100644
--- a/.ci/scripts/merge/apply-patches-by-label.py
+++ b/.ci/scripts/merge/apply-patches-by-label.py
@@ -25,7 +25,7 @@ def do_page(page):
if (check_individual(pr["labels"])):
pn = pr["number"]
print("Matched PR# %s" % pn)
- print(subprocess.check_output(["git", "fetch", "https://github.com/yuzu-emu/yuzu.git", "pull/%s/head:pr-%s" % (pn, pn), "-f"]))
+ 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", "merge", "--squash", "pr-%s" % pn]))
print(subprocess.check_output(["git", "commit", "-m\"Merge %s PR %s\"" % (tagline, pn)]))