Skip to content

Commit ef7f191

Browse files
change format to support ci (#8489)
1 parent 439382a commit ef7f191

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/js-sdk-release-tools/src/changelog/changelogGenerator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export class Changelog {
111111
public displayChangeLog(): string {
112112
const display: string[] = [];
113113
if (this.hasFeature) {
114-
display.push('**Features**');
114+
display.push('### Features Added');
115115
display.push('');
116116
this.addedOperationGroup
117117
.concat(this.addedOperation)
@@ -132,7 +132,7 @@ export class Changelog {
132132

133133
if (this.hasBreakingChange) {
134134
if (this.hasFeature) display.push('');
135-
display.push('**Breaking Changes**');
135+
display.push('### Breaking Changes');
136136
display.push('');
137137
this.removedOperationGroup
138138
.concat(this.removedOperation)

0 commit comments

Comments
 (0)