Skip to content

Commit

Permalink
fix: automation
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Antonelli committed Oct 26, 2022
1 parent ebd662f commit 56961be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release/module-automation/commons.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ async function commitAndCreatePullRequest(moduleInfo) {
`git checkout -b ${changelogBranchName} && git add . && git commit -m "chore(${moduleInfo.nameWithDash}): update changelogs" && git push --set-upstream origin ${changelogBranchName}`
);
await execShellCommand(
`gh pr create --title "${moduleInfo.nameWithSpace}: Updating changelogs" --body "This is an automated PR." --base master --head ${changelogBranchName}`
`gh pr create --title "${moduleInfo.nameWithSpace}: Updating changelogs" --body "This is an automated PR." --base main --head ${changelogBranchName}`
);
console.log("Created PR for changelog updates.");
}
Expand Down

0 comments on commit 56961be

Please sign in to comment.