Remove docker group and exclude major package updates

This commit is contained in:
Matthew Foster Walsh 2025-03-01 17:14:12 -07:00
parent 5eaf7811b4
commit 797e2c1929
No known key found for this signature in database

View File

@ -51,10 +51,6 @@ updates:
# Every weekday # Every weekday
schedule: schedule:
interval: 'daily' interval: 'daily'
groups:
docker:
patterns:
- '*'
{%- endif %} {%- endif %}
@ -68,8 +64,9 @@ updates:
interval: 'daily' interval: 'daily'
groups: groups:
python: python:
patterns: update-types:
- '*' - 'minor'
- 'patch'
{%- if cookiecutter.frontend_pipeline == 'Gulp' %} {%- if cookiecutter.frontend_pipeline == 'Gulp' %}
@ -82,7 +79,8 @@ updates:
interval: 'daily' interval: 'daily'
groups: groups:
javascript: javascript:
patterns: update-types:
- '*' - 'minor'
- 'patch'
{%- endif %} {%- endif %}