ci: Don't fetch submodules when fetching PRs
This commit is contained in:
parent
c2c9ca98a7
commit
523cca810a
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ def check_individual(repo_id, pr_id):
|
|||
|
||||
def merge_pr(pn, ref):
|
||||
print("Matched PR# %s" % pn)
|
||||
print(subprocess.check_output(["git", "fetch", "https://%sdev.azure.com/%s/_git/%s" % (user, org, repo), ref, "-f"]))
|
||||
print(subprocess.check_output(["git", "fetch", "https://%sdev.azure.com/%s/_git/%s" % (user, org, repo), ref, "-f", "--no-recurse-submodules"]))
|
||||
print(subprocess.check_output(["git", "merge", "--squash", 'origin/' + ref.replace('refs/heads/','')]))
|
||||
print(subprocess.check_output(["git", "commit", "-m\"Merge %s PR %s\"" % (tagline, pn)]))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue