From 901e62d95256bd657719afd6db09df35f09b92c8 Mon Sep 17 00:00:00 2001 From: Naoki Oketani Date: Fri, 8 Oct 2021 21:23:15 +0900 Subject: [PATCH] chore: format by prettier (js) --- dist/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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'),