Skip to content

Commit ef5f7d0

Browse files
authored
Update AssignCommitter.yml
1 parent af881e5 commit ef5f7d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/AssignCommitter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ jobs:
7474
const fileContentsText = fileContentsBufferObj.toString("utf8");
7575
7676
// Find lines that match ^(@[a-zA-Z0-9]+)(\s*#.*)?\n$ and extract the usernames
77-
// const regex = /^(@[a-zA-Z0-9]+)(\s*#.*)?\n$/;
78-
const regex = /^(.*?)$/;
77+
// const regex = /^(@[a-zA-Z0-9]+)(\s*#.*)?\n$/; // TODO: Fix this regex.
78+
const regex = /^(@.*?)$/;
7979
const reviewer_candidates = fileContentsText
8080
.split('\n')
8181
.map(line => line.trim())

0 commit comments

Comments
 (0)