From 7b44860aa76066658898843ada35be42b512ef52 Mon Sep 17 00:00:00 2001 From: Daniel Jurek Date: Tue, 3 Oct 2023 08:28:52 -0700 Subject: [PATCH] Remove AAD credentials from Service-Level-Readme-Automation.ps1 invocation (#27306) --- eng/pipelines/docindex.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/eng/pipelines/docindex.yml b/eng/pipelines/docindex.yml index b59062a9124a..a009e723c8a6 100644 --- a/eng/pipelines/docindex.yml +++ b/eng/pipelines/docindex.yml @@ -53,11 +53,7 @@ jobs: inputs: pwsh: true filePath: eng/common/scripts/Service-Level-Readme-Automation.ps1 - arguments: >- - -DocRepoLocation $(DocRepoLocation) - -TenantId '$(opensource-aad-tenant-id)' - -ClientId '$(opensource-aad-app-id)' - -ClientSecret '$(opensource-aad-secret)' + arguments: -DocRepoLocation $(DocRepoLocation) displayName: Generate Service Level Readme for main branch condition: and(succeeded(), or(eq(variables['Build.Reason'], 'Schedule'), eq(variables['Force.MainUpdate'], 'true'))) @@ -115,11 +111,7 @@ jobs: inputs: pwsh: true filePath: eng/common/scripts/Service-Level-Readme-Automation.ps1 - arguments: >- - -DocRepoLocation $(DocRepoLocation) - -TenantId '$(opensource-aad-tenant-id)' - -ClientId '$(opensource-aad-app-id)' - -ClientSecret '$(opensource-aad-secret)' + arguments: -DocRepoLocation $(DocRepoLocation) displayName: Generate Service Level Readme for Daily docs - task: Powershell@2