Skip to content

Commit

Permalink
ignore milestone in label for changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
nllong committed Dec 29, 2021
1 parent 4991f2f commit 0d2a1ef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/scripts/change_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,17 @@ def add_pr(listobj, issue):
continue

if 'Not Reproducible' in labels:
# these issues are noxt going to be reported
# these issues are not going to be reported
continue

if 'stale' in labels:
# issue closed due to staleness, it was not really addressed
continue

if 'Milestone' in labels:
# these are milestone tracking tickets and should not show up in changelog
continue

if 'Feature' in labels:
# print('New feature found')
add_issue(closed_issues, naming_lookup['Feature'][False], issue)
Expand Down

0 comments on commit 0d2a1ef

Please sign in to comment.