File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed
specs/ingestion/common/schemas Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -53,14 +53,10 @@ export async function pushGeneratedCode(): Promise<void> {
5353 return ;
5454 }
5555
56- let baseMessage = `%s ${ text . commitEndMessage } ` ;
57- if ( IS_RELEASE_COMMIT || isMainBranch ) {
58- console . log ( 'Processing release commit' ) ;
59- baseMessage = `${ text . commitReleaseMessage } [skip ci]` ;
60- }
56+ let baseMessage = IS_RELEASE_COMMIT && isMainBranch ? text . commitReleaseMessage : `%s ${ text . commitEndMessage } ` ;
6157
6258 const commitMessage = await run (
63- `git show -s ${ baseBranch } --format="${ baseMessage }
59+ `git show -s ${ baseBranch } --format="${ baseMessage } [skip-ci]
6460
6561Co-authored-by: %an <%ae>
6662%(trailers:key=Co-authored-by)"` ,
Original file line number Diff line number Diff line change 77 $ref : ' ./common.yml#/eventID'
88 runID :
99 $ref : ' ./common.yml#/runID'
10- parentID :
11- type : string
12- description : The parent event, the cause of this event.
13- example : 6c02aeb1-775e-418e-870b-1faccd4b2c0f
1410 status :
1511 $ref : ' #/EventStatus'
1612 type :
You can’t perform that action at this time.
0 commit comments