Azure devops Private feed build error #29963
-
What would you like help with?I would like help with my configuration How are you running Renovate?Self-hosted If you're self-hosting Renovate, tell us which platform (GitHub, GitLab, etc) and which version of Renovate.Azure devops, v37.421.5 Please tell us more about your question or problemI have a devops organisation which hosts private packages which are shared in the company. In the client project devops, I added a renovate.json file with: {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"azureWorkItemId": 1176,
"ignorePaths": ["XXXXX_ProjectName_XXX/package.json"],
"hostRules": [{
"platform": "nuget",
"endpoint": "https://pkgs.dev.azure.com",
"username": "",
"password": "XXXXX_PAT_XXX"
}]
} By adding the 'hostRules', we already remove the http401 errors which we received first. In the PR, a comment is added:
How can I fix this so renovate is able to create PRs while having the correct auth info? Logs (if relevant)Logs
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Fixed myself by adding my personal username. |
Beta Was this translation helpful? Give feedback.
Fixed myself by adding my personal username.
@rarkins Can the documentation be updated (https://docs.renovatebot.com/nuget/#authenticated-feeds) and tell that the username still needs to be specified in order to allow building the project when creating the PR?