Merge branch 'main' into fix-cache-hit-output

This commit is contained in:
Bishal Prasad 2022-08-25 14:26:47 +05:30 committed by GitHub
commit 883f85e649
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 4137 additions and 3907 deletions

View file

@ -61,8 +61,9 @@ export function getInputAsArray(
return core
.getInput(name, options)
.split("\n")
.map(s => s.trim())
.filter(x => x !== "");
.map(s => s.replace(/^!\s+/, "!").trim())
.filter(x => x !== "")
.sort();
}
export function getInputAsInt(