Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Changelog Verification CI failed issue for First GA packages #8498

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ export function makeChangesForFirstRelease(packageFolderPath: string, isStableRe

## ${newVersion} (${date})

### Features Added
wanlwanl marked this conversation as resolved.
Show resolved Hide resolved

The package of ${packageJsonData.name} is using our next generation design principles. To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/js/mgmt/quickstart).
`;
fs.writeFileSync(path.join(packageFolderPath, 'CHANGELOG.md'), content, 'utf8');
Expand All @@ -31,6 +33,8 @@ export function makeChangesForMigrateTrack1ToTrack2(packageFolderPath: string, n

## ${nextPackageVersion} (${date})

### Features Added

The package of ${packageJsonData.name} is using our next generation design principles since version ${nextPackageVersion}, which contains breaking changes.

To understand the detail of the change, please refer to [Changelog](https://aka.ms/js-track2-changelog).
Expand Down