Skip to content

Commit 96b6be8

Browse files
authored
fix(dependabot): use globbing to find the Dockerfile (#22)
1 parent 49c46d0 commit 96b6be8

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ updates:
4949

5050
# Enable version updates for Docker
5151
- package-ecosystem: "docker"
52-
directory: '/{{cookiecutter.project_name|replace(" ", "")}}/'
52+
directories:
53+
# We need to use directories in order to get wildcard support, otherwise we have a mess with trying to escape the {{}} for the template
54+
# Related: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#directories-or-directory--
55+
- '/**/*'
5356
schedule:
5457
interval: "weekly"
5558
day: "monday"

0 commit comments

Comments
 (0)