File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -130,6 +130,11 @@ jobs:
130130
131131 git checkout -b "$branch"
132132 git add -A
133+
134+ # Capture summary of changes before committing
135+ diff_stat=$(git diff --cached --stat | tail -1)
136+ changed_files=$(git diff --cached --name-only)
137+
133138 git commit -m "Update reference pages for v${version}"
134139 git push origin "$branch"
135140
@@ -139,7 +144,21 @@ jobs:
139144 --title "Update reference pages for v${version}" \
140145 --body "$(cat <<EOF
141146 Automated update of reference documentation for Quarto prerelease v${version}.
142-
147+
148+ ## Summary
149+
150+ ${diff_stat}
151+
152+ ## Changed files
153+
154+ \`\`\`
155+ ${changed_files}
156+ \`\`\`
157+
158+ ## Scripts run
159+
160+ - \`tools/reference.ts\` - format/cell/project reference JSON
161+ - \`tools/reference-cli-generate-md.R\` - CLI reference markdown
143162 EOF
144163 )")
145164
You can’t perform that action at this time.
0 commit comments