Skip to content

Commit b12bee8

Browse files
authored
Link to Zulip search for finding the most recent check-in (#1118)
1 parent e72b43a commit b12bee8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/check-in.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ set -eu
55
# This is not a very smart script
66
if [ $# != 2 ]; then
77
echo "usage: $0 <since> <number-of-prs-merged>"
8-
if [ $# = 1 ] ; then
8+
if [ $# = 0 ]; then
9+
echo "help: you can find the last check-in at" \
10+
"https://rust-lang.zulipchat.com/#narrow/stream/238009-t-compiler.2Fmeetings/search/wg-rustc-dev-guide"
11+
elif [ $# = 1 ] ; then
912
echo "help: you can find the number of PRs merged at" \
1013
"https://github.com/rust-lang/rustc-dev-guide/pulls?q=is%3Apr+is%3Amerged+updated%3A%3E$1"
1114
fi

0 commit comments

Comments
 (0)