Skip to content

Commit

Permalink
Merge pull request #6 from mnako/feature/advanced-dependabot
Browse files Browse the repository at this point in the history
Add more specific dependabot config
  • Loading branch information
mnako committed Apr 13, 2021
2 parents 293d6f5 + ed20ad1 commit 857d0be
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
version: 2
updates:
# Cookiecutter GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

# Cookiecutter Poetry Dependencies
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"

# Project Poetry Dependencies
- package-ecosystem: "pip"
directory: "/{{ cookiecutter.project_name }}/app/requirements"
schedule:
interval: "daily"

# Project Dev Dockerfile
- package-ecosystem: "docker"
directory: "/"
directory: "/{{ cookiecutter.project_name }}/app"
schedule:
interval: "daily"

# Project Dist Dockerfile
- package-ecosystem: "docker"
directory: "/{{ cookiecutter.project_name }}/docker/dist"
schedule:
interval: "daily"

0 comments on commit 857d0be

Please sign in to comment.