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

Commit c508713

Browse files
author
bcoe
committed
chore(lint): address linting
1 parent 29ea6b3 commit c508713

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ async function main () {
1111
const path = core.getInput('path') ? core.getInput('path') : undefined
1212
const releaseType = core.getInput('release-type')
1313
const token = core.getInput('token')
14-
const changelogTypes = core.getInput('changelog-types');
14+
const changelogTypes = core.getInput('changelog-types')
1515

1616
// Parse the changelogTypes if there are any
17-
let changelogSections = [];
17+
let changelogSections = []
1818
if (changelogTypes) {
19-
changelogSections = JSON.parse(changelogTypes);
19+
changelogSections = JSON.parse(changelogTypes)
2020
}
2121

2222
// First we check for any merged release PRs (PRs merged with the label

0 commit comments

Comments
 (0)