Skip to content

Commit f75dd65

Browse files
authored
Fix same_content_new bug (runs would be inappropriately skipped) (#125)
* Fix same_content_new bug (runs would be inappropriately skipped) Context: #124 * Add compiled js
1 parent 867de26 commit f75dd65

File tree

2 files changed

+19
-23
lines changed

2 files changed

+19
-23
lines changed

dist/index.js

+10-12
Original file line numberDiff line numberDiff line change
@@ -10064,20 +10064,18 @@ function detectConcurrentRuns(context) {
1006410064
exitSuccess({ shouldSkip: true });
1006510065
}
1006610066
}
10067-
else if (context.concurrentSkipping === "same_content" || context.concurrentSkipping === "same_content_newer") {
10067+
else if (context.concurrentSkipping === "same_content") {
1006810068
const concurrentDuplicate = concurrentRuns.find((run) => run.treeHash === context.currentRun.treeHash);
1006910069
if (concurrentDuplicate) {
10070-
if (context.concurrentSkipping === "same_content") {
10071-
core.info(`Skip execution because the exact same files are concurrently checked in ${concurrentDuplicate.html_url}`);
10072-
exitSuccess({ shouldSkip: true });
10073-
}
10074-
else if (context.concurrentSkipping === "same_content_newer") {
10075-
const concurrentIsOlder = concurrentRuns.find((run) => run.runNumber < context.currentRun.runNumber);
10076-
if (concurrentIsOlder) {
10077-
core.info(`Skip execution because the exact same files are concurrently checked in older ${concurrentDuplicate.html_url}`);
10078-
exitSuccess({ shouldSkip: true });
10079-
}
10080-
}
10070+
core.info(`Skip execution because the exact same files are concurrently checked in ${concurrentDuplicate.html_url}`);
10071+
exitSuccess({ shouldSkip: true });
10072+
}
10073+
}
10074+
else if (context.concurrentSkipping === "same_content_newer") {
10075+
const concurrentIsOlder = concurrentRuns.find((run) => (run.treeHash === context.currentRun.treeHash) && (run.runNumber < context.currentRun.runNumber));
10076+
if (concurrentIsOlder) {
10077+
core.info(`Skip execution because the exact same files are concurrently checked in older ${concurrentIsOlder.html_url}`);
10078+
exitSuccess({ shouldSkip: true });
1008110079
}
1008210080
}
1008310081
core.info(`Did not find any skippable concurrent workflow-runs`);

src/index.ts

+9-11
Original file line numberDiff line numberDiff line change
@@ -230,19 +230,17 @@ function detectConcurrentRuns(context: WRunContext) {
230230
core.info(`Skip execution because a newer instance of the same workflow is running in ${newerRun.html_url}`);
231231
exitSuccess({ shouldSkip: true });
232232
}
233-
} else if (context.concurrentSkipping === "same_content" || context.concurrentSkipping === "same_content_newer") {
233+
} else if (context.concurrentSkipping === "same_content") {
234234
const concurrentDuplicate = concurrentRuns.find((run) => run.treeHash === context.currentRun.treeHash);
235235
if (concurrentDuplicate) {
236-
if (context.concurrentSkipping === "same_content") {
237-
core.info(`Skip execution because the exact same files are concurrently checked in ${concurrentDuplicate.html_url}`);
238-
exitSuccess({ shouldSkip: true });
239-
} else if (context.concurrentSkipping === "same_content_newer") {
240-
const concurrentIsOlder = concurrentRuns.find((run) => run.runNumber < context.currentRun.runNumber);
241-
if (concurrentIsOlder) {
242-
core.info(`Skip execution because the exact same files are concurrently checked in older ${concurrentDuplicate.html_url}`);
243-
exitSuccess({ shouldSkip: true });
244-
}
245-
}
236+
core.info(`Skip execution because the exact same files are concurrently checked in ${concurrentDuplicate.html_url}`);
237+
exitSuccess({ shouldSkip: true });
238+
}
239+
} else if (context.concurrentSkipping === "same_content_newer") {
240+
const concurrentIsOlder = concurrentRuns.find((run) => (run.treeHash === context.currentRun.treeHash) && (run.runNumber < context.currentRun.runNumber));
241+
if (concurrentIsOlder) {
242+
core.info(`Skip execution because the exact same files are concurrently checked in older ${concurrentIsOlder.html_url}`);
243+
exitSuccess({ shouldSkip: true });
246244
}
247245
}
248246
core.info(`Did not find any skippable concurrent workflow-runs`);

0 commit comments

Comments
 (0)