Skip to content

Commit f48ba0a

Browse files
committed
hack: drop packages list from major release pages
1 parent a776256 commit f48ba0a

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

src/gardenlinux/github/release_notes/sections.py

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,9 @@ def release_notes_compare_package_versions_section(
117117
output += f"## Changes in Package Versions Compared to {previous_version}\n"
118118
output += compare_apt_repo_versions(previous_version, gardenlinux_version)
119119
else:
120-
output += (
121-
f"## Full List of Packages in Garden Linux version {gardenlinux_version}\n"
122-
)
123-
output += "<details><summary>Expand to see full list</summary>\n"
124-
output += "<pre>"
125-
output += "\n"
126-
for entry in package_list.values():
127-
output += f"{entry!r}\n"
128-
output += "</pre>"
129-
output += "\n</details>\n\n"
120+
# creating the full list of all packages exceeds the limit for github release pages
121+
# => ignore this part in the release page for now until we have a better strategy
122+
pass
130123

131124
return output
132125

0 commit comments

Comments
 (0)