Added full-semver support

This commit is contained in:
Lorenzo Bernardi 2020-11-04 20:06:49 +01:00 committed by GitHub
parent 24cde9589b
commit 1c149bae9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'),
};
}