Skip to content

Commit 7282a78

Browse files
committed
fix output when noop.
1 parent 81b430d commit 7282a78

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ runs:
120120
const pattern = new RegExp(INCLUDE_REGEX);
121121
if (!currentRelease.tag_name.match(pattern)) {
122122
core.warning(`The supplied include_regex does not match ${currentRelease.tag_name}. Doing nothing.`);
123-
return
123+
return {
124+
"comments": []
125+
};
124126
}
125127
126128
// Find a previous release in order to find commits and later use them to find associated pull requests.

0 commit comments

Comments
 (0)