Skip to content

Commit dc5707b

Browse files
authored
Update backport.py
1 parent 926fd56 commit dc5707b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/github/backport.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def execute(self, repo, upstream, until_commit, run_cherrypick):
7474

7575
# First pass. Find all must-backports
7676
for label in pr['labels']['nodes']:
77-
if label['name'] == 'pr-bugfix' or label['name'] == 'pr-must-backport':
77+
if label['name'] == 'pr-must-backport':
7878
backport_map[pr['number']] = branch_set.copy()
7979
continue
8080
matched = RE_MUST_BACKPORT.match(label['name'])

0 commit comments

Comments
 (0)