Skip to content

Commit c871104

Browse files
handle new labels when fetching milestones
1 parent 4e538bb commit c871104

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fetch_milestone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def link(number: int) -> str:
5555
note = f'{title.strip()} ({numbers_str} by @{user})'
5656
if 'bug' in labels:
5757
notes['Bugfixes'].append(note)
58-
elif 'enhancement' in labels:
58+
elif 'enhancement' in labels or 'feature' in labels:
5959
notes['New features and enhancements'].append(note)
6060
elif 'documentation' in labels:
6161
notes['Documentation'].append(note)

0 commit comments

Comments
 (0)