@@ -493,12 +493,15 @@ test-workflow: ## Run some tests on this Makefile and the github workflow
493493.PHONY : related-release-notes
494494related-release-notes : # # Grab release notes for related components (to be inserted in operator's release note upstream, cf RELEASE.md)
495495 echo -e " ## Related components\n\n" > /tmp/related.md
496- echo -e " ### eBPF Agent\n\n" >> /tmp/related.md
497- curl -s https://api.github.com/repos/netobserv/netobserv-ebpf-agent/releases/tags/$(BPF_VERSION ) | jq -r .body | xargs -0 printf " %b" | sed -r " s/##/####/" >> /tmp/related.md
498- echo -e " ### Flowlogs-Pipeline\n\n" >> /tmp/related.md
499- curl -s https://api.github.com/repos/netobserv/flowlogs-pipeline/releases/tags/$(FLP_VERSION ) | jq -r .body | xargs -0 printf " %b" | sed -r " s/##/####/" >> /tmp/related.md
500- echo -e " ### Console Plugin\n\n" >> /tmp/related.md
501- curl -s https://api.github.com/repos/netobserv/network-observability-console-plugin/releases/tags/$(PLG_VERSION ) | jq -r .body | xargs -0 printf " %b" | sed -r " s/##/####/" >> /tmp/related.md
496+ echo -e " <details><summary><b>eBPF Agent</b></summary>\n\n" >> /tmp/related.md
497+ curl -s https://api.github.com/repos/netobserv/netobserv-ebpf-agent/releases/tags/$(BPF_VERSION ) | jq -r .body | xargs -0 printf " %b" | sed -r " s/##/###/" >> /tmp/related.md
498+ echo -e " </details>\n" >> /tmp/related.md
499+ echo -e " <details><summary><b>Flowlogs-Pipeline</b></summary>\n\n" >> /tmp/related.md
500+ curl -s https://api.github.com/repos/netobserv/flowlogs-pipeline/releases/tags/$(FLP_VERSION ) | jq -r .body | xargs -0 printf " %b" | sed -r " s/##/###/" >> /tmp/related.md
501+ echo -e " </details>\n" >> /tmp/related.md
502+ echo -e " <details><summary><b>Console Plugin</b></summary>\n\n" >> /tmp/related.md
503+ curl -s https://api.github.com/repos/netobserv/network-observability-console-plugin/releases/tags/$(PLG_VERSION ) | jq -r .body | xargs -0 printf " %b" | sed -r " s/##/###/" >> /tmp/related.md
504+ echo -e " </details>\n" >> /tmp/related.md
502505 wl-copy < /tmp/related.md
503506 cat /tmp/related.md
504507 echo -e " \nText has been copied to the clipboard.\n"
0 commit comments