From cb16c6f7027a9942fd426dc830e674250613c9eb Mon Sep 17 00:00:00 2001 From: Joaquin Santana Date: Tue, 19 Nov 2024 13:16:11 +0100 Subject: [PATCH] chore: build dist (#4) --- dist/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dist/index.js b/dist/index.js index f2f3fad..ab61040 100644 --- a/dist/index.js +++ b/dist/index.js @@ -136665,6 +136665,8 @@ function parseInputs() { releaseType: getOptionalInput('release-type'), path: getOptionalInput('path'), repoUrl: core.getInput('repo-url') || process.env.GITHUB_REPOSITORY || '', + gitUsername: core.getInput('git-username'), + gitPassword: core.getInput('git-password'), targetBranch: getOptionalInput('target-branch'), configFile: core.getInput('config-file') || DEFAULT_CONFIG_FILE, manifestFile: core.getInput('manifest-file') || DEFAULT_MANIFEST_FILE, @@ -136741,6 +136743,8 @@ function getGitHubInstance(inputs) { repo, apiUrl: inputs.githubApiUrl, graphqlUrl: inputs.githubGraphqlUrl, + gitUsername: inputs.gitUsername, + gitPassword: inputs.gitPassword, token: inputs.token, defaultBranch: inputs.targetBranch, };