Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Álvaro Mondéjar Rubio committed Jun 21, 2022
1 parent fe28a72 commit c4678ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/actionUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function getInputAsArray(
return core
.getInput(name, options)
.split("\n")
.map(s => s.replace(/^\!\s+/, "!").trim())
.map(s => s.replace(/^!\s+/, "!").trim())
.filter(x => x !== "")
.sort();
}
Expand Down

0 comments on commit c4678ef

Please sign in to comment.