Skip to content

Commit

Permalink
Use sepLabels when joining labels for output (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Gustie authored and GitHub committed Nov 24, 2020
1 parent 7cb65aa commit d48c7d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async function run() {
core.info(label);
}
core.endGroup();
core.setOutput('labels', labels.join(inputs.sepTags));
core.setOutput('labels', labels.join(inputs.sepLabels));
} catch (error) {
core.setFailed(error.message);
}
Expand Down

0 comments on commit d48c7d2

Please sign in to comment.