Skip to content

Commit 9936d36

Browse files
committed
Auto merge of #4464 - flip1995:fetch_prs_between, r=phansch
Also fetch rollup merges in fetch_prs_between.sh script Otherwise rolled up PRs won't be included in the changelog, e.g. 2366661 changelog: none
2 parents a939d61 + 2dc7727 commit 9936d36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/fetch_prs_between.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ last=$2
1111

1212
IFS='
1313
'
14-
for pr in $(git log --oneline --grep "Merge #" --grep "Merge pull request" --grep "Auto merge of" "$first...$last" | sort -rn | uniq); do
14+
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
1515
id=$(echo $pr | rg -o '#[0-9]{3,5}' | cut -c 2-)
1616
commit=$(echo $pr | cut -d' ' -f 1)
1717
message=$(git --no-pager show --pretty=medium $commit)

0 commit comments

Comments
 (0)