File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ def main():
62
62
'major' : [],
63
63
'minor' : [],
64
64
'patch' : [],
65
+ 'cleanup' : [],
65
66
'unspecified' : [],
66
67
}
67
68
@@ -95,6 +96,8 @@ def main():
95
96
group_name = 'minor'
96
97
elif 'patch-backwards-compatible-bug-fixes' in pull_labels :
97
98
group_name = 'patch'
99
+ elif 'cleanup-no-release-required' in pull_labels :
100
+ group_name = 'cleanup'
98
101
else :
99
102
group_name = 'unspecified'
100
103
pulls_missing_semver_label .append (pull )
@@ -105,9 +108,10 @@ def main():
105
108
# pprint.pprint('merged at: {}'.format(pull.merged_at))
106
109
# print(pull.html_url)
107
110
108
- pull_request_changes .append (
109
- '- {} ([#{}]({}))' .format (pull .title , pull .number , pull .html_url )
110
- )
111
+ if group_name in ['major' , 'minor' , 'patch' ]:
112
+ pull_request_changes .append (
113
+ '- {} ([#{}]({}))' .format (pull .title , pull .number , pull .html_url )
114
+ )
111
115
112
116
# print('-' * 10)
113
117
You can’t perform that action at this time.
0 commit comments