mirror of
https://github.com/joaquinjsb/gitea-release-please-action
synced 2026-05-10 09:31:18 +02:00
chore(lint): address linting
This commit is contained in:
6
index.js
6
index.js
@@ -11,12 +11,12 @@ async function main () {
|
||||
const path = core.getInput('path') ? core.getInput('path') : undefined
|
||||
const releaseType = core.getInput('release-type')
|
||||
const token = core.getInput('token')
|
||||
const changelogTypes = core.getInput('changelog-types');
|
||||
const changelogTypes = core.getInput('changelog-types')
|
||||
|
||||
// Parse the changelogTypes if there are any
|
||||
let changelogSections = [];
|
||||
let changelogSections = []
|
||||
if (changelogTypes) {
|
||||
changelogSections = JSON.parse(changelogTypes);
|
||||
changelogSections = JSON.parse(changelogTypes)
|
||||
}
|
||||
|
||||
// First we check for any merged release PRs (PRs merged with the label
|
||||
|
||||
Reference in New Issue
Block a user