We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e255f36 + 27ddde5 commit c154754Copy full SHA for c154754
util/fetch_prs_between.sh
@@ -14,7 +14,12 @@ IFS='
14
for pr in $(git log --oneline --grep "Merge #" --grep "Merge pull request" --grep "Auto merge of" "$first...$last" | sort -rn | uniq); do
15
id=$(echo $pr | rg -o '#[0-9]{3,5}' | cut -c 2-)
16
commit=$(echo $pr | cut -d' ' -f 1)
17
+ message=$(git --no-pager show --pretty=medium $commit)
18
+ if [ ! -z $(echo "$message" | rg "^[\s]{4}changelog: [nN]one\.*$") ]; then
19
+ continue
20
+ fi
21
+
22
echo "URL: https://github.com/rust-lang/rust-clippy/pull/$id"
- echo "$(git --no-pager show --pretty=medium $commit)"
23
+ echo "$message"
24
echo "---------------------------------------------------------\n"
25
done
0 commit comments