We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b430d commit 7282a78Copy full SHA for 7282a78
action.yml
@@ -120,7 +120,9 @@ runs:
120
const pattern = new RegExp(INCLUDE_REGEX);
121
if (!currentRelease.tag_name.match(pattern)) {
122
core.warning(`The supplied include_regex does not match ${currentRelease.tag_name}. Doing nothing.`);
123
- return
+ return {
124
+ "comments": []
125
+ };
126
}
127
128
// Find a previous release in order to find commits and later use them to find associated pull requests.
0 commit comments