We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a939d61 + 2dc7727 commit 9936d36Copy full SHA for 9936d36
util/fetch_prs_between.sh
@@ -11,7 +11,7 @@ last=$2
11
12
IFS='
13
'
14
-for pr in $(git log --oneline --grep "Merge #" --grep "Merge pull request" --grep "Auto merge of" "$first...$last" | sort -rn | uniq); do
+for pr in $(git log --oneline --grep "Merge #" --grep "Merge pull request" --grep "Auto merge of" --grep "Rollup 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)
0 commit comments