Skip to content

Commit

Permalink
Link to Zulip search for finding the most recent check-in (#1118)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyn514 authored Apr 29, 2021
1 parent e72b43a commit b12bee8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/check-in.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ set -eu
# This is not a very smart script
if [ $# != 2 ]; then
echo "usage: $0 <since> <number-of-prs-merged>"
if [ $# = 1 ] ; then
if [ $# = 0 ]; then
echo "help: you can find the last check-in at" \
"https://rust-lang.zulipchat.com/#narrow/stream/238009-t-compiler.2Fmeetings/search/wg-rustc-dev-guide"
elif [ $# = 1 ] ; then
echo "help: you can find the number of PRs merged at" \
"https://github.com/rust-lang/rustc-dev-guide/pulls?q=is%3Apr+is%3Amerged+updated%3A%3E$1"
fi
Expand Down

0 comments on commit b12bee8

Please sign in to comment.