File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -112283,6 +112283,7 @@ function parseInputs() {
112283
112283
proxyServer: getOptionalInput('proxy-server'),
112284
112284
skipGitHubRelease: getOptionalBooleanInput('skip-github-release'),
112285
112285
skipGitHubPullRequest: getOptionalBooleanInput('skip-github-pull-request'),
112286
+ skipLabeling: getOptionalBooleanInput('skip-labeling'),
112286
112287
fork: getOptionalBooleanInput('fork'),
112287
112288
includeComponentInTag: getOptionalBooleanInput('include-component-in-tag'),
112288
112289
changelogHost: core.getInput('changelog-host') || DEFAULT_GITHUB_SERVER_URL,
@@ -112308,11 +112309,13 @@ function loadOrBuildManifest(github, inputs) {
112308
112309
changelogHost: inputs.changelogHost,
112309
112310
}, {
112310
112311
fork: inputs.fork,
112312
+ skipLabeling: inputs.skipLabeling,
112311
112313
}, inputs.path);
112312
112314
}
112313
- const manifestOverrides = inputs.fork
112315
+ const manifestOverrides = inputs.fork || inputs.skipLabeling
112314
112316
? {
112315
112317
fork: inputs.fork,
112318
+ skipLabeling: inputs.skipLabeling,
112316
112319
}
112317
112320
: {};
112318
112321
core.debug('Loading manifest from config file');
You can’t perform that action at this time.
0 commit comments