Skip to content

Commit

Permalink
Update create_pr_k8s_conformance.py
Browse files Browse the repository at this point in the history
fix conversion to string
  • Loading branch information
hendrikKahl committed Jan 24, 2024
1 parent 9067920 commit f40098f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def createPullRequest(product, provider_tuple, branch_name):
subprocess.run(["git", "checkout", "master"])
matcher = re.compile("gardener:" + product + "-" + pv_tuple[0] + "-" + pv_tuple[1])
for pr in upstream_prs:
m = matcher.search(pr.head)
m = matcher.search(str(pr.head))
if m:
print('Skipping ' + product + "-" + pv_tuple[0] + "-" + pv_tuple[1]
+ " because a PR for this combination already exists.")
Expand Down

0 comments on commit f40098f

Please sign in to comment.