File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
specs/ingestion/common/schemas Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,14 @@ export async function pushGeneratedCode(): Promise<void> {
5353 return ;
5454 }
5555
56- let baseMessage = IS_RELEASE_COMMIT && isMainBranch ? text . commitReleaseMessage : `%s ${ text . commitEndMessage } ` ;
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+ }
5761
5862 const commitMessage = await run (
59- `git show -s ${ baseBranch } --format="${ baseMessage } [skip-ci]
63+ `git show -s ${ baseBranch } --format="${ baseMessage }
6064
6165Co-authored-by: %an <%ae>
6266%(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
1014 status :
1115 $ref : ' #/EventStatus'
1216 type :
You can’t perform that action at this time.
0 commit comments