Added semver-prefix input

This commit is contained in:
Lorenzo Bernardi 2020-11-04 20:08:54 +01:00 committed by GitHub
parent 47b73a2917
commit 2480e1e23e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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