Skip to content

Commit b338957

Browse files
authored
Add groups for dependabot updates (#5709)
* Add groups for docker prs * development update group doesn't work * Remove docker group and exclude major package updates
1 parent 7c9f6a7 commit b338957

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

{{cookiecutter.project_slug}}/.github/dependabot.yml

+19-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ updates:
99
# Every weekday
1010
schedule:
1111
interval: 'daily'
12+
groups:
13+
github-actions:
14+
patterns:
15+
- '*'
1216

1317
{%- if cookiecutter.use_docker == 'y' %}
1418

@@ -28,10 +32,14 @@ updates:
2832
update-types:
2933
- 'version-update:semver-major'
3034
- 'version-update:semver-minor'
35+
groups:
36+
docker-python:
37+
patterns:
38+
- '*'
3139

3240

3341
- package-ecosystem: 'docker'
34-
# Look for a `Dockerfile` in the `compose/local/node` directory
42+
# Look for a `Dockerfile` in the listed directories
3543
directories:
3644
- 'compose/local/node/'
3745
- 'compose/production/aws/'
@@ -54,6 +62,11 @@ updates:
5462
# Every weekday
5563
schedule:
5664
interval: 'daily'
65+
groups:
66+
python:
67+
update-types:
68+
- 'minor'
69+
- 'patch'
5770

5871
{%- if cookiecutter.frontend_pipeline == 'Gulp' %}
5972

@@ -64,5 +77,10 @@ updates:
6477
# Every weekday
6578
schedule:
6679
interval: 'daily'
80+
groups:
81+
javascript:
82+
update-types:
83+
- 'minor'
84+
- 'patch'
6785

6886
{%- endif %}

0 commit comments

Comments
 (0)