mirror of
https://github.com/joaquinjsb/gitea-release-please-action
synced 2026-05-05 10:37:47 +02:00
committed by
GitHub
parent
863b06fd1c
commit
733a6d752f
3
dist/index.js
vendored
3
dist/index.js
vendored
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user