Skip to content

Commit

Permalink
Adding dependabot.yml file for auto updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jonespm committed Jan 21, 2025
1 parent 980316e commit 0e913b1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
# Maintain dependencies for python
- package-ecosystem: "pip" # See documentation for possible values
directory: "/src" # Location of package manifests
schedule:
interval: "weekly"
allow:
- dependency-type: "direct"
ignore:
- dependency-name: "django"
versions:
- "> 4.2" # This ignores versions above 4.2, allowing only 4.2.x LTS upgrades
groups:
all-python-dependencies:
patterns: ["*"]
# Maintain dependencies for npm
- package-ecosystem: "npm"
directory: "/src"
schedule:
interval: "weekly"
groups:
all-npm-dependencies:
patterns: ["*"]

0 comments on commit 0e913b1

Please sign in to comment.