diff --git a/scripts/ci/codegen/pushGeneratedCode.ts b/scripts/ci/codegen/pushGeneratedCode.ts index 1037bdd7fdb..e118f5f86cb 100644 --- a/scripts/ci/codegen/pushGeneratedCode.ts +++ b/scripts/ci/codegen/pushGeneratedCode.ts @@ -56,15 +56,18 @@ export async function pushGeneratedCode(): Promise { let baseMessage = IS_RELEASE_COMMIT && isMainBranch ? text.commitReleaseMessage : `%s ${text.commitEndMessage}`; const commitMessage = await run( - `git show -s ${baseBranch} --format="${baseMessage} [skip-ci] + `git show -s ${baseBranch} --format="${baseMessage} + Co-authored-by: %an <%ae> -%(trailers:key=Co-authored-by)"`, +skip-checks: true +%(trailers:key=Co-authored-by) +%(trailers:key=skip-checks)"`, ); console.log(`Pushing code to generated branch: '${branchToPush}'`); await run('git add .'); - await run(`git commit -m "${commitMessage.replaceAll('"', '\\"')}"`); + await run(`git commit -m "${commitMessage.replaceAll('"', '\\"')}" --cleanup=verbatim`); await run(`git push origin ${branchToPush}`); setOutput('GENERATED_COMMIT', await run('git rev-parse HEAD')); diff --git a/specs/ingestion/spec.yml b/specs/ingestion/spec.yml index 594c9b3ec1b..31559178e8e 100644 --- a/specs/ingestion/spec.yml +++ b/specs/ingestion/spec.yml @@ -33,7 +33,6 @@ info: ## Response status and errors Response bodies are JSON objects. - Deleting a user token returns an empty response body with rate-limiting information as headers. Successful responses return a `2xx` status. Client errors return a `4xx` status. Server errors are indicated by a `5xx` status. Error responses have a `message` property with more information.