Skip to content

Commit 8539c7f

Browse files
jyn514Joshua Nelson
authored andcommitted
Improve markdown formatting
1 parent e75c72b commit 8539c7f

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

ci/check-in.sh

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,16 @@ show_pulls() {
2424
jq -r '.[] | { title, number, html_url, user: .user.login } | "- " + .title + " [#" + (.number | tostring) + "](" + .html_url + ")"'
2525
}
2626

27-
echo "Authors:"
28-
jq -r '{ login: .[].user.login } | "- **@" + .login + "**"' < pulls.json | sort -u
29-
echo "Changes:"
27+
echo "### Authors"
28+
jq -r '{ login: .[].user.login } | "- **@" + .login + "**"' < pulls.json \
29+
| sort -u
30+
echo
31+
echo "### Changes"
32+
echo
3033
show_pulls < pulls.json
31-
echo "Changes in progress:"
34+
echo
35+
echo "### Changes in progress"
36+
echo
3237
# If there are more than 30 PRs open at a time, you'll need to set `per_page`.
3338
# For now this seems unlikely.
3439
curl "https://api.github.com/repos/rust-lang/rustc-dev-guide/pulls?state=open" | show_pulls

0 commit comments

Comments
 (0)