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 5ebb806 commit 8c0ac51Copy full SHA for 8c0ac51
.github/workflows/build-test-push.yml
@@ -442,7 +442,14 @@ jobs:
442
443
[ ! -f "${new}" ] && continue
444
445
- echo "### Platform: \`${plat}\`" >> "${out}"
+
446
+ # Collapse each platform's RPM diff into a <details> section
447
+ {
448
+ echo ""
449
+ echo "<details>"
450
+ echo "<summary>Platform: \`${plat}\`</summary>"
451
452
+ } >> "${out}"
453
454
if [ -f "${old}" ]; then
455
# Added / Removed sets based on names
@@ -512,6 +519,12 @@ jobs:
512
519
cut -f1 "${new}" | awk '{print "- " $0}' >> "${out}"
513
520
echo "" >> "${out}"
514
521
any_section=true
522
523
524
525
+ echo "</details>"
526
527
515
528
fi
516
529
done
517
530
0 commit comments