You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log(`Triggered full re-run for ${runKey(r)}`);
196
-
fullRerunCount++;
187
+
console.log(`Triggered re-run for ${runKey(r)}`);
188
+
rerunCount++;
197
189
} catch (e) {
198
-
console.log(`Failed to trigger full re-run for ${runKey(r)}: ${e.message}`);
190
+
console.log(`Failed to trigger re-run for ${runKey(r)}: ${e.message}`);
199
191
}
200
192
}
201
-
if (fullRerunCount === 0) {
193
+
if (rerunCount === 0) {
202
194
console.error(`No eligible workflow runs to re-run. Skipped running=${skippedRunning}, skipped by conclusion=${skippedConclusion}.`);
203
195
} else {
204
-
console.log(`Finished. Triggered full re-run for ${fullRerunCount} workflow run(s). Skipped running=${skippedRunning}, skipped by conclusion=${skippedConclusion}.`);
196
+
console.log(`Finished. Triggered re-run for ${rerunCount} workflow run(s). Skipped running=${skippedRunning}, skipped by conclusion=${skippedConclusion}.`);
0 commit comments