Skip to content

Commit f318597

Browse files
auto-docs: Update RPCN connector docs (#345)
Co-authored-by: JakeSCahill <[email protected]> Co-authored-by: JakeSCahill <[email protected]>
1 parent 692e6b6 commit f318597

File tree

149 files changed

+10059
-130563
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+10059
-130563
lines changed

.github/workflows/update-docs.yml

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,37 @@ jobs:
6363
--draft-missing \
6464
--update-whats-new > full_output.txt
6565
66+
# Extract PR summary (between <!-- PR_SUMMARY_START --> and <!-- PR_SUMMARY_END -->)
67+
if grep -q "PR_SUMMARY_START" full_output.txt; then
68+
sed -n '/<!-- PR_SUMMARY_START -->/,/<!-- PR_SUMMARY_END -->/p' full_output.txt > pr_summary.txt
69+
echo "PR summary extracted"
70+
else
71+
echo " No PR summary found in output"
72+
touch pr_summary.txt
73+
fi
74+
6675
{
6776
echo "delta_report<<EOF"
68-
echo "<details><summary>RPCN Connector Generation Output</summary>"
77+
# Include PR summary at the top if it exists
78+
if [ -s pr_summary.txt ]; then
79+
cat pr_summary.txt
80+
echo ""
81+
echo "---"
82+
echo ""
83+
fi
84+
echo "For help reviewing this content, see our [wiki](https://redpandadata.atlassian.net/wiki/spaces/DOC/pages/1247543314/Review+autogenerated+reference+docs+for+Redpanda+Connect)."
6985
echo ""
86+
echo "<details><summary>📋 Full Generation Output</summary>"
87+
echo ""
88+
echo '```'
7089
cat full_output.txt
90+
echo '```'
7191
echo ""
7292
echo "</details>"
73-
echo ""
74-
echo "For help reviewing this content, see our [wiki](https://redpandadata.atlassian.net/wiki/spaces/DOC/pages/1247543314/Review+autogenerated+reference+docs+for+Redpanda+Connect)."
7593
echo "EOF"
7694
} >> "$GITHUB_OUTPUT"
7795
78-
rm -f full_output.txt delta_report.md
96+
rm -f full_output.txt pr_summary.txt
7997
8098
- name: Check if branch already exists
8199
id: check_branch

antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ asciidoc:
1212
project-github: redpanda-data/connect
1313
full-version: 24.1.4
1414
latest-release-commit: b5ade3f40
15-
latest-connect-version: 4.72.0
15+
latest-connect-version: 4.76.0
1616
page-home-intro: >-
1717
Redpanda Connect is a data streaming service for building scalable, high-performance data pipelines that drive
1818
real-time analytics and actionable business insights. Integrate data across systems with hundreds of prebuilt

0 commit comments

Comments
 (0)