Skip to content

Commit

Permalink
Merge branch 'main' into release-please--branches--main--components--…
Browse files Browse the repository at this point in the history
…release-please-action
  • Loading branch information
chingor13 authored Mar 11, 2024
2 parents 4fa67ea + 733a6d7 commit 0d90779
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }),
Expand All @@ -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;
}
Expand All @@ -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);
Expand Down

0 comments on commit 0d90779

Please sign in to comment.