Skip to content
This repository was archived by the owner on Mar 2, 2021. It is now read-only.

Commit b1fa40e

Browse files
committed
BUG: No skip when not PR
1 parent 28102f6 commit b1fa40e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ async function run() {
66
const pr = github.context.payload.pull_request;
77
if (!pr) {
88
core.info("This action only runs for pull request, exiting with no-op");
9+
core.setOutput('run_next', true); /* To handle NO_FAIL case */
910
return;
1011
}
1112

0 commit comments

Comments
 (0)