Skip to content

Commit

Permalink
enable dependabot on next branch (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrjasek authored Nov 12, 2024
1 parent 1bf19f5 commit 55ab6e3
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,26 @@

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/client" # Location of package manifests
# develop branch
- package-ecosystem: "npm"
directory: "/client"
schedule:
interval: "weekly"
- package-ecosystem: "pip" # See documentation for possible values
directory: "/server" # Location of package manifests

- package-ecosystem: "pip"
directory: "/server"
schedule:
interval: "weekly"

# next branch
- package-ecosystem: "npm"
directory: "/client"
target-branch: "next"
schedule:
interval: "daily"

- package-ecosystem: "pip"
directory: "/server"
target-branch: "next"
schedule:
interval: "daily"

0 comments on commit 55ab6e3

Please sign in to comment.