1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-11 12:41:33 +02:00

chore: fix linting

This commit is contained in:
bcoe
2020-11-25 13:24:54 -08:00
parent fc5b3e5c11
commit 369a402914

View File

@@ -7,8 +7,8 @@ const RELEASE_LABEL = 'autorelease: pending'
async function main () {
const bumpMinorPreMajor = Boolean(core.getInput('bump-minor-pre-major'))
// TODO(bcoe): remove this log line.
console.info(typeof core.getInput('clean'), core.getInput('clean'));
const clean = core.getInput('clean') === 'false' ? false : true
console.info(typeof core.getInput('clean'), core.getInput('clean'))
const clean = core.getInput('clean') !== 'false'
const monorepoTags = Boolean(core.getInput('monorepo-tags'))
const packageName = core.getInput('package-name')
const path = core.getInput('path') ? core.getInput('path') : undefined