From b38c704255bb9d6c862fba391a2eba0fe9248eaf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 5 Apr 2026 18:20:37 +0000 Subject: [PATCH] Add Release Notes column to versions table in publish-documentation workflow Agent-Logs-Url: https://github.com/petesramek/polyline-algorithm-csharp/sessions/a802ecac-bc1a-45b3-8640-e763e21f4755 Co-authored-by: petesramek <2333452+petesramek@users.noreply.github.com> --- .github/workflows/publish-documentation.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-documentation.yml b/.github/workflows/publish-documentation.yml index 85d8f21a..474910ff 100644 --- a/.github/workflows/publish-documentation.yml +++ b/.github/workflows/publish-documentation.yml @@ -151,15 +151,15 @@ jobs: { echo "## Released Versions" echo "" - echo "| Version | Guide | API Reference |" - echo "|---------|-------|---------------|" + echo "| Version | Guide | API Reference | Release Notes |" + echo "|---------|-------|---------------|---------------|" for ver in $(echo "${{ steps.discover-versions.outputs.versions }}" | tr ',' '\n' | sort -Vr); do if [ "$ver" = "$latest" ]; then label="v${ver} (latest)" else label="v${ver}" fi - echo "| ${label} | [Guide](${ver}/guide/getting-started.html) | [API Reference](${ver}/PolylineAlgorithm.html) |" + echo "| ${label} | [Guide](${ver}/guide/getting-started.html) | [API Reference](${ver}/PolylineAlgorithm.html) | [Release Notes](https://github.com/petesramek/polyline-algorithm-csharp/releases/tag/v${ver}) |" done } > /tmp/versions_section.md awk '/{versions_section}/{while((getline line < "/tmp/versions_section.md") > 0) print line; close("/tmp/versions_section.md"); next} {print}' \