From 2fa5bdce5421d6e693abc25efa35bc83a95e05b4 Mon Sep 17 00:00:00 2001 From: Abdullah Adeel Date: Mon, 10 Jan 2022 03:05:31 +0500 Subject: [PATCH] added mysql support in dependabot.yml --- {{cookiecutter.project_slug}}/.github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/{{cookiecutter.project_slug}}/.github/dependabot.yml b/{{cookiecutter.project_slug}}/.github/dependabot.yml index cf88cf33b..0b792f748 100644 --- a/{{cookiecutter.project_slug}}/.github/dependabot.yml +++ b/{{cookiecutter.project_slug}}/.github/dependabot.yml @@ -57,8 +57,14 @@ updates: # Enable version updates for Docker - package-ecosystem: "docker" + {%- if cookiecutter.database_engine == 'postgresql' %} # Look for a `Dockerfile` in the `compose/production/postgres` directory directory: "compose/production/postgres/" + {%- endif %} + {%- if cookiecutter.database_engine == 'mysql' %} + # Look for a `Dockerfile` in the `compose/production/mysql` directory + directory: "compose/production/mysql/" + {%- endif %} # Check for updates to GitHub Actions every weekday schedule: interval: "daily"