Suppose you're opening an issue and there's a lot noisey logs that may be useful.
Rather than wrecking readability, wrap it in a <details> tag!
<details>
Summary Goes Here| phases: | |
| - phase: CD | |
| queue: LEP | |
| steps: | |
| - task: PowerShell@1 | |
| displayName: ExtConfigs_PreBuild.ps1 | |
| inputs: | |
| scriptType: filePath | |
| scriptName: "$(repo.BuildScripts)/ExtConfigs_PreBuild.ps1" | |
| arguments: '' |
| PS C:\> netstat -an | select-string -pattern "listening" | |
| TCP 0.0.0.0:80 0.0.0.0:0 LISTENING | |
| TCP 0.0.0.0:81 0.0.0.0:0 LISTENING | |
| TCP 0.0.0.0:135 0.0.0.0:0 LISTENING | |
| TCP 0.0.0.0:383 0.0.0.0:0 LISTENING |
| - powershell: | | |
| $params = "$env:SONARQUBE_SCANNER_PARAMS" -replace '"sonar.branch.name":"[\w/,-.]*"\,?' | |
| Write-Host "##vso[task.setvariable variable=SONARQUBE_SCANNER_PARAMS]$params" |