Skip to content

Commit d32794f

Browse files
committed
workflows/pr-subscriber: Handle libc++ and libc++abi labels
1 parent e1bfeb6 commit d32794f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/git/github-automation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def __init__(self, token: str, repo: str, pr_number: int, label_name: str):
8282
self.repo = github.Github(token).get_repo(repo)
8383
self.org = github.Github(token).get_organization(self.repo.organization.login)
8484
self.pr = self.repo.get_issue(pr_number).as_pull_request()
85-
self._team_name = "pr-subscribers-{}".format(label_name).lower()
85+
self._team_name = "pr-subscribers-{}".format(label_name.replace('+', 'x')).lower()
8686

8787
def run(self) -> bool:
8888
patch = None

0 commit comments

Comments
 (0)