Skip to content

Commit

Permalink
Group dependabot updates
Browse files Browse the repository at this point in the history
  • Loading branch information
randombenj committed Oct 10, 2023
1 parent c601d62 commit fc658ff
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,45 @@
version: 2
updates:

# Maintain dependencies for GitHub Actions
# -- github actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for npm
# -- node
- package-ecosystem: "npm"
directory: "/web"
schedule:
interval: "daily"
groups:
dependencies:
patterns:
- "*"
exclude-patterns:
# FIXME: currently fails due to incompatibility with react:
# https://github.com/facebook/create-react-app/issues/13080#issue-1635236109
- "typescript"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]

# Maintain dependencies for poetry

# -- poetry
- package-ecosystem: "pip"
directory: "/docat"
schedule:
interval: "daily"
groups:
dependencies:
patterns:
- "*"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]

# Maintain dependencies for docker
# -- docker
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
interval: "daily"

0 comments on commit fc658ff

Please sign in to comment.