Skip to content

Commit dcfad47

Browse files
chore: build dist (#1095)
Build dist
1 parent fb7f385 commit dcfad47

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: dist/index.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -112283,6 +112283,7 @@ function parseInputs() {
112283112283
proxyServer: getOptionalInput('proxy-server'),
112284112284
skipGitHubRelease: getOptionalBooleanInput('skip-github-release'),
112285112285
skipGitHubPullRequest: getOptionalBooleanInput('skip-github-pull-request'),
112286+
skipLabeling: getOptionalBooleanInput('skip-labeling'),
112286112287
fork: getOptionalBooleanInput('fork'),
112287112288
includeComponentInTag: getOptionalBooleanInput('include-component-in-tag'),
112288112289
changelogHost: core.getInput('changelog-host') || DEFAULT_GITHUB_SERVER_URL,
@@ -112308,11 +112309,13 @@ function loadOrBuildManifest(github, inputs) {
112308112309
changelogHost: inputs.changelogHost,
112309112310
}, {
112310112311
fork: inputs.fork,
112312+
skipLabeling: inputs.skipLabeling,
112311112313
}, inputs.path);
112312112314
}
112313-
const manifestOverrides = inputs.fork
112315+
const manifestOverrides = inputs.fork || inputs.skipLabeling
112314112316
? {
112315112317
fork: inputs.fork,
112318+
skipLabeling: inputs.skipLabeling,
112316112319
}
112317112320
: {};
112318112321
core.debug('Loading manifest from config file');

0 commit comments

Comments
 (0)