Use git-credential-store instead of .extraheader

This commit is contained in:
Julius Lehmann 2024-06-10 18:45:12 +02:00
parent b80ff79f17
commit 6606fcd2c4
7 changed files with 133 additions and 96 deletions

View file

@ -149,6 +149,9 @@ export async function getInputs(): Promise<IGitSourceSettings> {
result.persistCredentials =
(core.getInput('persist-credentials') || 'false').toUpperCase() === 'TRUE'
// Custom credential helper
result.customCredentialHelper = core.getInput('custom-credential-helper')
// Workflow organization ID
result.workflowOrganizationId =
await workflowContextHelper.getOrganizationId()