Skip to content

Commit 6314063

Browse files
committed
Revert "chore: use skip-checks trailers [skip-bc] (#3982)"
This reverts commit 70f2f49.
1 parent 1dfdf44 commit 6314063

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

scripts/ci/codegen/pushGeneratedCode.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,18 +56,15 @@ export async function pushGeneratedCode(): Promise<void> {
5656
let baseMessage = IS_RELEASE_COMMIT && isMainBranch ? text.commitReleaseMessage : `%s ${text.commitEndMessage}`;
5757

5858
const commitMessage = await run(
59-
`git show -s ${baseBranch} --format="${baseMessage}
60-
59+
`git show -s ${baseBranch} --format="${baseMessage} [skip-ci]
6160
6261
Co-authored-by: %an <%ae>
63-
skip-checks: true
64-
%(trailers:key=Co-authored-by)
65-
%(trailers:key=skip-checks)"`,
62+
%(trailers:key=Co-authored-by)"`,
6663
);
6764

6865
console.log(`Pushing code to generated branch: '${branchToPush}'`);
6966
await run('git add .');
70-
await run(`git commit -m "${commitMessage.replaceAll('"', '\\"')}" --cleanup=verbatim`);
67+
await run(`git commit -m "${commitMessage.replaceAll('"', '\\"')}"`);
7168
await run(`git push origin ${branchToPush}`);
7269

7370
setOutput('GENERATED_COMMIT', await run('git rev-parse HEAD'));

specs/ingestion/spec.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ info:
3333
## Response status and errors
3434
3535
Response bodies are JSON objects.
36+
Deleting a user token returns an empty response body with rate-limiting information as headers.
3637
3738
Successful responses return a `2xx` status. Client errors return a `4xx` status. Server errors are indicated by a `5xx` status.
3839
Error responses have a `message` property with more information.

0 commit comments

Comments
 (0)