Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 542 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 542 Bytes

Renovate-changelog-updater

How to use it ?

npx renovate-changelog-updater --depName my-updated-package --current-version 1.0.0 --new-version 2.0.0

How to configure renovate ?

{
  allowPostUpgradeCommandTemplating: true,
  allowedPostUpgradeCommands: ['^npx renovate-changelog-updater'],
  postUpgradeTasks: {
    commands: ['npx renovate-changelog-updater --depName {{{depName}}} --current-version {{{currentVersion}}} --new-version {{{newVersion}}}'],
    fileFilters: ['CHANGELOG.md'],
    executionMode: 'update',
  }
}