File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff 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
6261Co-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' ) ) ;
Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments