We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5fdea4e + caa075c commit 9b0db10Copy full SHA for 9b0db10
scripts/get-prs.py
@@ -58,7 +58,9 @@ def extract_gitref(s):
58
]
59
else:
60
for c in commits:
61
- prs.update(c.get_pulls())
+ if len(c.parents) == 1:
62
+ # Chartpress ignores merge commits when generating the Helm chart SHA
63
+ prs.update(c.get_pulls())
64
pr_summaries = [
65
f"- [#{pr.number}]({pr.html_url}) {pr.title}"
66
for pr in sorted(prs, key=lambda pr: pr.number)
0 commit comments