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 3f9c16a commit a0e2308Copy full SHA for a0e2308
.github/scripts/validate-and-merge.mjs
@@ -65,7 +65,7 @@ async function validateAndMerge() {
65
const isValid = requiredKeys.every(key => key in document);
66
67
if (!isValid) {
68
- console.log(JSON.stringify(document) + ' is missing required keys');
+ console.log(JSON.parse(document) + ' is missing required keys');
69
return;
70
}
71
0 commit comments