File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
src/gardenlinux/github/release_notes Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -117,9 +117,16 @@ 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- # 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
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 "
123130
124131 return output
125132
You can’t perform that action at this time.
0 commit comments