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 2a2c77e commit a0ea6beCopy full SHA for a0ea6be
scripts/ci/codegen/pushGeneratedCode.ts
@@ -59,13 +59,12 @@ export async function pushGeneratedCode(): Promise<void> {
59
`git show -s ${baseBranch} --format="${baseMessage}
60
61
Co-authored-by: %an <%ae>
62
-%(trailers:key=skip-checks)"
63
%(trailers:key=Co-authored-by)"`,
64
);
65
66
console.log(`Pushing code to generated branch: '${branchToPush}'`);
67
await run('git add .');
68
- await run(`git commit -m "${commitMessage.replaceAll('"', '\\"')}"`);
+ await run(`git commit -m "${commitMessage.replaceAll('"', '\\"')}" --trailer skip-checks:true --cleanup=verbatim`);
69
await run(`git push origin ${branchToPush}`);
70
71
setOutput('GENERATED_COMMIT', await run('git rev-parse HEAD'));
0 commit comments