Skip to content

Commit 451bf71

Browse files
authored
fix(specs): remove parentID from ingestion specs [skip-bc] (#3981)
1 parent cc36a15 commit 451bf71

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

scripts/ci/codegen/pushGeneratedCode.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff 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
6561
Co-authored-by: %an <%ae>
6662
%(trailers:key=Co-authored-by)"`,

specs/ingestion/common/schemas/event.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ Event:
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:

0 commit comments

Comments
 (0)