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.
1 parent 5fdea4e commit 448b383Copy full SHA for 448b383
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