Skip to content

Commit 3bfa5fe

Browse files
committed
Hotfix: namespace for req-reviewers
1 parent 1f22e6f commit 3bfa5fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy_bot/get_reviewers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def find_contributors_to_branch(repository: str, head_branch: str, base_branch:
6161
contributors: Set[str] = find_contributors_to_branch(args.repository, args.head_branch, args.base_branch)
6262

6363
# output reviewers as comma delimited list
64-
reviewers = contributors + required_reviewers.split(",")
64+
reviewers = contributors + args.required_reviewers.split(",")
6565
print(",".join(reviewers))
6666

6767
exit(0)

0 commit comments

Comments
 (0)