Skip to content

Commit 735af84

Browse files
committed
action: Fix dereference of team name
Instead of returning the team object, return the team name. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
1 parent 29eaf88 commit 735af84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

action.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def filter_reviewers(org, pr, reviewers, team_reviewers):
5959
if m.login in reviews:
6060
break
6161
else:
62-
t.append(team)
62+
t.append(team.name)
6363

6464
return r, t
6565

0 commit comments

Comments
 (0)