Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit 733a6d7

Browse files
chore: build dist (#956)
Build dist PR
1 parent 863b06f commit 733a6d7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

dist/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -116713,6 +116713,7 @@ const DEFAULT_CONFIG_FILE = 'release-please-config.json';
116713116713
const DEFAULT_MANIFEST_FILE = '.release-please-manifest.json';
116714116714
const DEFAULT_GITHUB_API_URL = 'https://api.github.com';
116715116715
const DEFAULT_GITHUB_GRAPHQL_URL = 'https://api.github.com';
116716+
const DEFAULT_GITHUB_SERVER_URL = 'https://github.com';
116716116717
function parseInputs() {
116717116718
const inputs = {
116718116719
token: core.getInput('token', { required: true }),
@@ -116730,6 +116731,7 @@ function parseInputs() {
116730116731
skipGitHubPullRequest: getOptionalBooleanInput('skip-github-pull-request'),
116731116732
fork: getOptionalBooleanInput('fork'),
116732116733
includeComponentInTag: getOptionalBooleanInput('include-component-in-tag'),
116734+
changelogHost: core.getInput('changelog-host') || DEFAULT_GITHUB_SERVER_URL,
116733116735
};
116734116736
return inputs;
116735116737
}
@@ -116749,6 +116751,7 @@ function loadOrBuildManifest(github, inputs) {
116749116751
return release_please_1.Manifest.fromConfig(github, github.repository.defaultBranch, {
116750116752
releaseType: inputs.releaseType,
116751116753
includeComponentInTag: inputs.includeComponentInTag,
116754+
changelogHost: inputs.changelogHost,
116752116755
}, {
116753116756
fork: inputs.fork,
116754116757
}, inputs.path);

0 commit comments

Comments
 (0)