From 756aa23f3c515599d6f047d7e1ceed3203f7d436 Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Thu, 2 May 2024 12:43:21 -0500 Subject: [PATCH] add docker to dependabot updates (#144) --- CHANGELOG.md | 1 + .../.github/dependabot.yml.jinja | 32 ++++++++++++------- 2 files changed, 22 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0717be2a..5894e909 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Repo now has a `CODEOWNERS` file to automatically assign reviewers to pull requests. (Template already has one.) - Added a new, separate Dependabot group for `django-email-relay` updates. +- Added Docker to Dependabot updates. ## [2024.19] diff --git a/src/django_twc_project/.github/dependabot.yml.jinja b/src/django_twc_project/.github/dependabot.yml.jinja index daf22860..97c0c816 100644 --- a/src/django_twc_project/.github/dependabot.yml.jinja +++ b/src/django_twc_project/.github/dependabot.yml.jinja @@ -1,5 +1,15 @@ version: 2 updates: + - package-ecosystem: docker + directory: "/" + schedule: + interval: weekly + labels: + - 🤖 dependabot + groups: + docker: + patterns: + - "*" - package-ecosystem: github-actions directory: "/" schedule: @@ -11,6 +21,17 @@ updates: gha: patterns: - "*" + - package-ecosystem: npm + directory: "/" + schedule: + interval: weekly + timezone: America/Chicago + labels: + - 🤖 dependabot + groups: + javascript: + patterns: + - "*" - package-ecosystem: pip directory: "/" schedule: @@ -32,14 +53,3 @@ updates: email-relay: patterns: - "django-email-relay" - - package-ecosystem: npm - directory: "/" - schedule: - interval: weekly - timezone: America/Chicago - labels: - - 🤖 dependabot - groups: - javascript: - patterns: - - "*"