I have been trying to create a pull request using the createPullRequest plugin from octokit and so far for simple text files it works well, but when I am trying to commit some changes into a JSON file in the repository, I get something like this:
I want this data to present itself in a json-structure, I am using the following code:
const updatedContent = JSON.stringify(json_for_package);
const pr=await octokit_pull.createPullRequest({
owner: ownername,
repo: repoName,
title: "pull request "+dependency,
body: "change "+dependency+" v"+curr_version+" to v"+version,
base: "main" ,
head: "pulls-requests-branches-names-main-"+dependency+"-v"+version,
forceFork: true,
changes: [
{
files: {
"package.json": updatedContent,
},
commit:
"updated the contents of package.json",
},
],
});
Here json_for_package is the JSON content that I want to write into my package.json
file, I just need to know how I can pass the updatedContent
in the files so that it recognizes that it a JSON file and not any simple text.
Beside writing the JSON to a file first, and use the file as parameter, you can also use
gr2m/octokit-plugin-create-pull-request
:Example
And then: