From 733a6d752f7032c519e5e9c677b7bf840e3d1f54 Mon Sep 17 00:00:00 2001 From: Google GitHub Actions Bot <72759630+google-github-actions-bot@users.noreply.github.com> Date: Mon, 11 Mar 2024 15:28:45 -0400 Subject: [PATCH] chore: build dist (#956) Build dist PR --- dist/index.js | 3 +++ 1 file changed, 3 insertions(+) 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);