diff --git a/dist/index.js b/dist/index.js index 3b9348f..3324711 100644 --- a/dist/index.js +++ b/dist/index.js @@ -104,7 +104,10 @@ function getIssueOption(body) { assignees = core.getInput('issue_assignees').replace(/\s+/g, '').split(','); } if (core.getInput('issue_labels')) { - labels = core.getInput('issue_labels').split(',').map(label => label.trim()); + labels = core + .getInput('issue_labels') + .split(',') + .map(label => label.trim()); } return { title: core.getInput('issue_title'),