diff --git a/eng/pipelines/githubio-linkcheck.yml b/eng/pipelines/githubio-linkcheck.yml index c5f63a92954..651f6727100 100644 --- a/eng/pipelines/githubio-linkcheck.yml +++ b/eng/pipelines/githubio-linkcheck.yml @@ -1,6 +1,8 @@ trigger: none pr: none +timeoutInMinutes: 120 + pool: vmImage: 'ubuntu-18.04' @@ -80,6 +82,18 @@ steps: -outputCacheFile "$(cachefile)" -devOpsLogging: $true +- task: PowerShell@2 + displayName: 'go link check' + inputs: + pwsh: true + filePath: eng/common/scripts/Verify-Links.ps1 + arguments: > + -urls "https://raw.githubusercontent.com/Azure/azure-sdk-for-go/master/CHANGELOG.md" + -ignoreLinksFile "./eng/pipelines/githubio-linkcheck-ignore-links.txt" + -inputCacheFile "$(cachefile)" + -outputCacheFile "$(cachefile)" + -devOpsLogging: $true + - publish: $(cachefile) artifact: verify-links-cache.txt condition: succeededOrFailed()