Skip to content

Commit 9b87e0a

Browse files
authored
Merge pull request #2241 from github/nickfyson/speculative-script-fix
fix handling of backport changelog
2 parents 18111b6 + c7a8056 commit 9b87e0a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/update-release-branch.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -186,16 +186,17 @@ def process_changelog_for_backports(source_branch_major_version, target_branch_m
186186
with open('CHANGELOG.md', 'r') as f:
187187

188188
# until we find the first section, just duplicate all lines
189-
while True:
189+
found_first_section = False
190+
while not found_first_section:
190191
line = f.readline()
191192
if not line:
192193
raise Exception('Could not find any change sections in CHANGELOG.md') # EOF
193194

194-
output += line
195195
if line.startswith('## '):
196196
line = line.replace(f'## {source_branch_major_version}', f'## {target_branch_major_version}')
197-
# we have found the first section, so now handle things differently
198-
break
197+
found_first_section = True
198+
199+
output += line
199200

200201
# found_content tracks whether we hit two headings in a row
201202
found_content = False

0 commit comments

Comments
 (0)