fix(repo): fix release to properly generate changelog (#6740)

This commit is contained in:
Jason Jean 2021-08-16 18:27:15 -04:00 committed by GitHub
parent d0b65fab18
commit c90aaea256
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,7 +175,6 @@ process.env.GITHUB_TOKEN = !parsedArgs.local
*/ */
const options = { const options = {
'dry-run': DRY_RUN, 'dry-run': DRY_RUN,
changelogCommand: 'conventional-changelog -p angular | tail -n +3',
/** /**
* Needed so that we can leverage conventional-changelog to generate * Needed so that we can leverage conventional-changelog to generate
* the changelog * the changelog
@ -190,6 +189,7 @@ const options = {
npm: false, npm: false,
git: { git: {
requireCleanWorkingDir: false, requireCleanWorkingDir: false,
changelog: 'conventional-changelog -p angular | tail -n +3',
}, },
}; };