From 1c149bae9b8d17d6f425e0713621f46af6f541ff Mon Sep 17 00:00:00 2001 From: Lorenzo Bernardi Date: Wed, 4 Nov 2020 20:06:49 +0100 Subject: [PATCH] Added full-semver support --- src/context.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/context.ts b/src/context.ts index a5a7eb6..ce10a9a 100644 --- a/src/context.ts +++ b/src/context.ts @@ -12,6 +12,7 @@ export interface Inputs { sepTags: string; sepLabels: string; githubToken: string; + fullSemver: boolean; } export function getInputs(): Inputs { @@ -26,7 +27,8 @@ export function getInputs(): Inputs { tagSchedule: core.getInput('tag-schedule') || 'nightly', sepTags: core.getInput('sep-tags') || `\n`, sepLabels: core.getInput('sep-labels') || `\n`, - githubToken: core.getInput('github-token') + githubToken: core.getInput('github-token'), + fullSemver: /true/i.test(core.getInput('full-semver') || 'false'), }; }