We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff4d853 commit fa5fff6Copy full SHA for fa5fff6
.github/workflows/PrAssignee.yml
@@ -87,7 +87,7 @@ jobs:
87
const fileContentsText = fileContentsBufferObj.toString("utf8");
88
89
// Find lines that match the following regex, and extract the usernames:
90
- const regex = /^@([a-zA-z0-9\-]+)(\s*?)?(#[\S]*?)?$/;
+ const regex = /^@([a-zA-Z0-9\-]+)(\s*?)?(#[\S]*?)?$/;
91
const assigneeCandidates = fileContentsText
92
.split('\n')
93
.map(line => line.trim())
@@ -124,7 +124,6 @@ jobs:
124
125
if (isCollaborator == true) {
126
127
- // return; // TODO: Uncomment this line.
128
if (thisIsActionsRunnerDebugMode) {
129
// The PR author is a committer
130
// But thisIsActionsRunnerDebugMode is true, so we proceed to still run the rest of the script
0 commit comments