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 af1acfe commit 7f382dfCopy full SHA for 7f382df
action.yml
@@ -115,10 +115,8 @@ runs:
115
116
// Validate that the returned body is a string
117
if (typeof body !== 'string') {
118
- throw new TypeError(
119
- `Returned value from user script must be a string. Received type '${typeof body}'. ` +
120
- `Please return a string, or serialize your result using JSON.stringify.`
121
- );
+ throw new TypeError(`Returned value from user script must be a string. Received type '${typeof body}'. `
+ + `Please return a string, or serialize your result using JSON.stringify.`);
122
}
123
124
// Output to GITHUB_STEP_SUMMARY
0 commit comments