From f31af72910f7a89622494f5ce21044b4b726513d Mon Sep 17 00:00:00 2001 From: Jyotsna Date: Thu, 5 Nov 2020 12:12:33 +0530 Subject: [PATCH] Moved changes to context module, added check to prevent overriding user input Signed-off-by: Jyotsna --- src/context.ts | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/context.ts b/src/context.ts index fc7a81d..e1fad6d 100644 --- a/src/context.ts +++ b/src/context.ts @@ -54,7 +54,8 @@ export function tmpNameSync(options?: tmp.TmpNameOptions): string { } export async function getInputs(defaultContext: string): Promise { - return { + + let userInputs = { context: core.getInput('context') || defaultContext, file: core.getInput('file') || 'Dockerfile', buildArgs: await getInputList('build-args', true), @@ -75,6 +76,20 @@ export async function getInputs(defaultContext: string): Promise { githubToken: core.getInput('github-token'), ssh: await getInputList('ssh') }; + + //Add repo as source-label if not already supplied by user + const sourceLabelKey = 'org.opencontainers.image.source'; + if( userInputs.labels.find(val => val.startsWith(sourceLabelKey) == true ) == null){ + userInputs.labels.push( + `${sourceLabelKey}=https://github.com/${github.context.repo.owner}/${github.context.repo.repo}` + ); + } + + //Add dockerfile path as label + let dockerfilePath = userInputs.file; + userInputs.labels.push(`dockerfile-path=${dockerfilePath}`); + + return userInputs; } export async function getArgs(inputs: Inputs, defaultContext: string, buildxVersion: string): Promise> {