Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
fix: default labels should be undefined (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 authored Aug 15, 2022
1 parent 6a05e01 commit 0647714
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,14 @@ async function manifestInstance (github) {
const component = core.getInput('component') || undefined
const includeVInTag = core.getBooleanInput('include-v-in-tag')
const tagSeparator = core.getInput('tag-separator') || undefined
const snapshotLabels = core.getMultilineInput('snapshot-labels') || undefined
const snapshotLabels = core.getInput('snapshot-labels') ? core.getMultilineInput('snapshot-labels') : undefined
const bootstrapSha = core.getInput('bootstrap-sha') || undefined
const lastReleaseSha = core.getInput('last-release-sha') || undefined
const alwaysLinkLocal = core.getBooleanInput('always-link-local')
const separatePullRequests = core.getBooleanInput('separate-pull-requests')
const plugins = core.getMultilineInput('plugins') || undefined
const labels = core.getMultilineInput('labels') || undefined
const releaseLabels = core.getMultilineInput('release-labels') || undefined
const labels = core.getInput('labels') ? core.getMultilineInput('labels') : undefined
const releaseLabels = core.getInput('release-labels') ? core.getMultilineInput('release-labels') : undefined
const skipLabeling = core.getBooleanInput('skip-labeling')
const sequentialCalls = core.getBooleanInput('sequential-calls')
const groupPullRequestTitlePattern = core.getInput('group-pull-request-title-pattern') || undefined
Expand Down

0 comments on commit 0647714

Please sign in to comment.