We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3d8362 commit 24033e0Copy full SHA for 24033e0
1 file changed
src/helper.ts
@@ -144,7 +144,7 @@ export async function sendPR(
144
baseBranchName: string,
145
) {
146
try {
147
- const formattedContent = JSON.stringify(updatedCodeJSON, null, 2);
+ const formattedContent = JSON.stringify(updatedCodeJSON, null, 2) + "\n";
148
const headBranchName = `code-json-${new Date().getTime()}`;
149
150
const PR = await octokit.createPullRequest({
0 commit comments