Skip to content

Commit

Permalink
Create dependabot config file
Browse files Browse the repository at this point in the history
Most dependencies should exclude updating patch release versions. The dependencies are specified explicitly in the Gradle builds in order to allow patch updates from io.spring.dependency-management to be included.
  • Loading branch information
robertmcnees committed Jun 12, 2024
1 parent 58659fc commit 596a7db
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
version: 2
updates:
- package-ecosystem: "maven"
directory: "/initial/"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
schedule:
interval: "monthly"
target-branch: "main"

- package-ecosystem: "gradle"
directory: "/initial/"
ignore:
- dependency-name: "org.springframework.*"
update-types: ["version-update:semver-patch"]
- dependency-name: "com.vaadin.*"
update-types: ["version-update:semver-patch"]
schedule:
interval: "monthly"
target-branch: "main"

- package-ecosystem: "maven"
directory: "/complete/"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
schedule:
interval: "monthly"
target-branch: "main"

- package-ecosystem: "gradle"
directory: "/complete/"
ignore:
- dependency-name: "org.springframework.*"
update-types: ["version-update:semver-patch"]
- dependency-name: "com.vaadin.*"
update-types: ["version-update:semver-patch"]
schedule:
interval: "monthly"
target-branch: "main"

0 comments on commit 596a7db

Please sign in to comment.