diff --git a/dist/index.js b/dist/index.js index c2c1d72..fec7d54 100644 --- a/dist/index.js +++ b/dist/index.js @@ -116713,6 +116713,7 @@ const DEFAULT_CONFIG_FILE = 'release-please-config.json'; const DEFAULT_MANIFEST_FILE = '.release-please-manifest.json'; const DEFAULT_GITHUB_API_URL = 'https://api.github.com'; const DEFAULT_GITHUB_GRAPHQL_URL = 'https://api.github.com'; +const DEFAULT_GITHUB_SERVER_URL = 'https://github.com'; function parseInputs() { const inputs = { token: core.getInput('token', { required: true }), @@ -116730,6 +116731,7 @@ function parseInputs() { skipGitHubPullRequest: getOptionalBooleanInput('skip-github-pull-request'), fork: getOptionalBooleanInput('fork'), includeComponentInTag: getOptionalBooleanInput('include-component-in-tag'), + changelogHost: core.getInput('changelog-host') || DEFAULT_GITHUB_SERVER_URL, }; return inputs; } @@ -116749,6 +116751,7 @@ function loadOrBuildManifest(github, inputs) { return release_please_1.Manifest.fromConfig(github, github.repository.defaultBranch, { releaseType: inputs.releaseType, includeComponentInTag: inputs.includeComponentInTag, + changelogHost: inputs.changelogHost, }, { fork: inputs.fork, }, inputs.path);