File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ jobs:
107
107
return;
108
108
}
109
109
110
-
110
+
111
111
const RUNNER_DEBUG_original = process.env.RUNNER_DEBUG;
112
112
console.log('RUNNER_DEBUG_original: ', RUNNER_DEBUG_original);
113
113
if (RUNNER_DEBUG_original === undefined) {
@@ -123,7 +123,7 @@ jobs:
123
123
console.log('thisIsActionsRunnerDebugMode: ', thisIsActionsRunnerDebugMode);
124
124
125
125
if (isCollaborator == true) {
126
-
126
+
127
127
// return; // TODO: Uncomment this line.
128
128
if (thisIsActionsRunnerDebugMode) {
129
129
// The PR author is a committer
@@ -199,11 +199,9 @@ jobs:
199
199
body: commentBody,
200
200
});
201
201
202
- // Sanity check 1: Make sure that assignee was successfully assigned.
203
- // Sanity check 2:
204
- // Exit with error if any
202
+ // Exit with error if any problems were encountered earlier
205
203
if (weDidEncounterError) {
206
- const msg = 'ERROR: Encountered at least one error while running the script';
204
+ const msg = 'ERROR: Encountered at least one problem while running the script';
207
205
console.error(msg);
208
206
throw new Error(msg);
209
207
}
You can’t perform that action at this time.
0 commit comments