You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pipeline (ResourceModules/.azuredevops/platformPipelines/platform.updateReadMe.yml) has 3 issues that must be fixed
The pool reference should be
${{ if ne(variables.vmImage, '') }}:
vmImage: ${{ variables.vmImage }}${{ if ne(variables.poolName, '') }}:
name: ${{ variables.poolName }}
The input object used in the pipeline did not work at a customer
$functionInput=@{
ModulesPath=Join-Path'$(System.DefaultWorkingDirectory)''arm'FilePath=Join-Path'$(System.DefaultWorkingDirectory)''arm/README.md'Organization= ('$(Build.Repository.Name)').split('/')[0] # HERE: returned the repo nameRepositoryName= ('$(Build.Repository.Name)').split('/')[1] # HERE: returned emptyColumnsInOrder=@('Name','ProviderNamespace','ResourceType')
}
The pipeline uses the script Set-GitHubReadMeModuleTable @functionInput -Verbose which is not Azure DevOps ready. The script should be updated to take GitHub vs AzureDevOps as an input parameter, should be renamed and also updated accordingly (e.g. the generated module links are all GitHub links)
The text was updated successfully, but these errors were encountered:
The pipeline (ResourceModules/.azuredevops/platformPipelines/platform.updateReadMe.yml) has 3 issues that must be fixed
The pool reference should be
The input object used in the pipeline did not work at a customer
Set-GitHubReadMeModuleTable @functionInput -Verbose
which is not Azure DevOps ready. The script should be updated to take GitHub vs AzureDevOps as an input parameter, should be renamed and also updated accordingly (e.g. the generated module links are all GitHub links)The text was updated successfully, but these errors were encountered: