mirror of
https://github.com/docker/metadata-action.git
synced 2025-04-03 17:10:23 +02:00
Added semver-prefix input
This commit is contained in:
parent
47b73a2917
commit
2480e1e23e
@ -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')
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user