mirror of
https://github.com/joaquinjsb/gitea-release-please-action
synced 2026-05-14 01:41:34 +02:00
fix: restore include-component-in-tag default (false) (#888)
v3 had this option and must be configurable or at least set to `false` so that the default behavior is to create a plain `v1.2.3` tag (without the component name prefixed). Found this while dogfooding our own usage of the action (in this repo).
This commit is contained in:
2
dist/index.js
vendored
2
dist/index.js
vendored
@@ -116242,6 +116242,7 @@ function parseInputs() {
|
||||
skipGitHubRelease: getOptionalBooleanInput('skip-github-release'),
|
||||
skipGitHubPullRequest: getOptionalBooleanInput('skip-github-pull-request'),
|
||||
fork: getOptionalBooleanInput('fork'),
|
||||
includeComponentInTag: getOptionalBooleanInput('include-component-in-tag'),
|
||||
};
|
||||
return inputs;
|
||||
}
|
||||
@@ -116260,6 +116261,7 @@ function loadOrBuildManifest(github, inputs) {
|
||||
core.debug('Building manifest from config');
|
||||
return release_please_1.Manifest.fromConfig(github, github.repository.defaultBranch, {
|
||||
releaseType: inputs.releaseType,
|
||||
includeComponentInTag: inputs.includeComponentInTag,
|
||||
}, {
|
||||
fork: inputs.fork,
|
||||
}, inputs.path);
|
||||
|
||||
Reference in New Issue
Block a user