Skip to content

Commit

Permalink
Updating the directory path escaping in the GitHub Dependabot configu…
Browse files Browse the repository at this point in the history
…ration.
  • Loading branch information
adrianwebb committed Sep 1, 2024
1 parent 826ac2b commit 98009c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ updates:

# Update npm packages
- package-ecosystem: "npm"
directory: "\{\{cookiecutter.project_slug\}\}/"
directory: "{{cookiecutter.project_slug}}/"
schedule:
interval: "daily"
labels:
Expand All @@ -32,7 +32,7 @@ updates:
# support wildcards or recursively checking subdirectories. Check this issue for updates:
# https://github.com/dependabot/dependabot-core/issues/2178
- package-ecosystem: "docker"
directory: "\{\{cookiecutter.project_slug\}\}/compose/local/django/"
directory: "{{cookiecutter.project_slug}}/compose/local/django/"
schedule:
interval: "daily"
ignore:
Expand All @@ -44,14 +44,14 @@ updates:
- "update"

- package-ecosystem: "docker"
directory: "\{\{cookiecutter.project_slug\}\}/compose/local/node/"
directory: "{{cookiecutter.project_slug}}/compose/local/node/"
schedule:
interval: "daily"
labels:
- "update"

- package-ecosystem: "docker"
directory: "\{\{cookiecutter.project_slug\}\}/compose/production/django/"
directory: "{{cookiecutter.project_slug}}/compose/production/django/"
schedule:
interval: "daily"
ignore:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
exclude: "{{cookiecutter.project_slug}}|.github/contributors.json|.github/dependabot.yml|CHANGELOG.md|CONTRIBUTORS.md"
exclude: "{{cookiecutter.project_slug}}|.github/contributors.json|CHANGELOG.md|CONTRIBUTORS.md"
default_stages: [commit]

default_language_version:
Expand Down

0 comments on commit 98009c7

Please sign in to comment.