Add set-safe-directory input to allow customer to take control.

This commit is contained in:
Tingluo Huang 2022-04-19 03:57:01 +00:00 committed by GitHub
parent dcd71f6466
commit 49508e7d5c
11 changed files with 146 additions and 32 deletions

View file

@ -122,5 +122,8 @@ export async function getInputs(): Promise<IGitSourceSettings> {
// Workflow organization ID
result.workflowOrganizationId = await workflowContextHelper.getOrganizationId()
// Set safe.directory in git global config.
result.setSafeDirectory =
(core.getInput('set-safe-directory') || 'true').toUpperCase() === 'TRUE'
return result
}