Skip to content
Snippets Groups Projects
Commit deea7505 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

feat(azure-pipelines)!: disable by default (#18142)

Closes #15818

BREAKING CHANGE: azure-pipelines manager is now disabled by default.
parent caad0ae2
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ export { extractPackageFile } from './extract';
export const defaultConfig = {
fileMatch: ['azure.*pipelines?.*\\.ya?ml$'],
enabled: false,
};
export const supportedDatasources = [
......
The `azure-pipelines` manager extracts container and repository resources from the `resources` block as well as tasks from `steps` blocks.
The `azure-pipelines` manager is disabled by default.
This is because there's no way for Renovate to know whether new task versions are yet available with the Azure DevOps environment, so new versions proposed by Renovate could fail.
To opt into running it, set the following:
```json
{
"azure-pipelines": {
"enabled": true
}
}
```
It works by container and repository resources from the `resources` block as well as tasks from `steps` blocks.
For example:
```yaml
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment