From 2480e1e23e911e9e1029f320c2ef1c653301d615 Mon Sep 17 00:00:00 2001 From: Lorenzo Bernardi Date: Wed, 4 Nov 2020 20:08:54 +0100 Subject: [PATCH] Added semver-prefix input --- src/context.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/context.ts b/src/context.ts index ce10a9a..6fee70d 100644 --- a/src/context.ts +++ b/src/context.ts @@ -13,6 +13,7 @@ export interface Inputs { sepLabels: string; githubToken: string; fullSemver: boolean; + semverPrefix: string; } export function getInputs(): Inputs { @@ -29,6 +30,7 @@ export function getInputs(): Inputs { sepLabels: core.getInput('sep-labels') || `\n`, githubToken: core.getInput('github-token'), fullSemver: /true/i.test(core.getInput('full-semver') || 'false'), + semverPrefix: core.getInput('semver-prefix') }; }