From 44c5b8051164efde2254db5b502607669333e69d Mon Sep 17 00:00:00 2001 From: Henrik Gerdes Date: Mon, 5 Jun 2023 20:38:26 +0200 Subject: [PATCH] feat: allow csv usage in labels Signed-off-by: Henrik Gerdes --- src/context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context.ts b/src/context.ts index a0d2b22..6261d69 100644 --- a/src/context.ts +++ b/src/context.ts @@ -52,7 +52,7 @@ export async function getInputs(): Promise { cgroupParent: core.getInput('cgroup-parent'), context: core.getInput('context') || Context.gitContext(), file: core.getInput('file'), - labels: Util.getInputList('labels', {ignoreComma: true}), + labels: Util.getInputList('labels'), load: core.getBooleanInput('load'), network: core.getInput('network'), noCache: core.getBooleanInput('no-cache'),