Skip to content

Commit e83a747

Browse files
committed
Remove ancestor following in changelog generation, which was dropping PRs not being direct parents nor descendants of the release PR
1 parent 7d71f58 commit e83a747

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate-pr-changelogs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ select_notable() {
7272
temp_changelog_yaml="$(mktemp)"
7373

7474
for pr_number in $(
75-
git log --merges --oneline --ancestry-path "$commit_range" \
75+
git log --merges --oneline "$commit_range" \
7676
| grep 'Merge pull request' \
7777
| sed 's|^[0-9a-z]\+ Merge pull request #\([0-9]\+\) .*$|\1|g'
7878
); do

0 commit comments

Comments
 (0)