Fix yaml alignment

This commit is contained in:
Tim Donohue
2024-10-14 12:22:53 -05:00
parent f9fa586060
commit 0d36bcec2e

View File

@@ -7,41 +7,41 @@ updates:
interval: "weekly" interval: "weekly"
# Allow up to 10 open PRs for dependencies # Allow up to 10 open PRs for dependencies
open-pull-requests-limit: 10 open-pull-requests-limit: 10
# Group together Angular package upgrades # Group together Angular package upgrades
groups: groups:
# Group together all minor/patch version updates for Angular in a single PR # Group together all minor/patch version updates for Angular in a single PR
angular: angular:
applies-to: version-updates applies-to: version-updates
patterns: patterns:
- "@angular*" - "@angular*"
update-types: update-types:
- "minor" - "minor"
- "patch" - "patch"
# Group together all security updates for Angular. Only accept minor/patch types. # Group together all security updates for Angular. Only accept minor/patch types.
angular-security: angular-security:
applies-to: security-updates applies-to: security-updates
patterns: patterns:
- "@angular*" - "@angular*"
update-types: update-types:
- "minor" - "minor"
- "patch" - "patch"
# Group together all minor/patch version updates for NgRx in a single PR # Group together all minor/patch version updates for NgRx in a single PR
ngrx: ngrx:
applies-to: version-updates applies-to: version-updates
patterns: patterns:
- "@ngrx*" - "@ngrx*"
update-types: update-types:
- "minor" - "minor"
- "patch" - "patch"
# Group together all security updates for NgRx. Only accept minor/patch types. # Group together all security updates for NgRx. Only accept minor/patch types.
ngrx-security: ngrx-security:
applies-to: security-updates applies-to: security-updates
patterns: patterns:
- "@ngrx*" - "@ngrx*"
update-types: update-types:
- "minor" - "minor"
- "patch" - "patch"
ignore: ignore:
# Ignore all major version updates for all dependencies. We'll only automate minor/patch updates. # Ignore all major version updates for all dependencies. We'll only automate minor/patch updates.
- dependency-name: "*" - dependency-name: "*"
update-types: ["version-update:semver-major"] update-types: ["version-update:semver-major"]