mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
Also fetch rollup merges in fetch_prs_between.sh script
This commit is contained in:
parent
a939d61cf7
commit
2dc7727bcd
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ last=$2
|
|||
|
||||
IFS='
|
||||
'
|
||||
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
|
||||
id=$(echo $pr | rg -o '#[0-9]{3,5}' | cut -c 2-)
|
||||
commit=$(echo $pr | cut -d' ' -f 1)
|
||||
message=$(git --no-pager show --pretty=medium $commit)
|
||||
|
|
Loading…
Reference in a new issue