Skip to content

Commit

Permalink
chore(deps): group breaking and pre v1
Browse files Browse the repository at this point in the history
  • Loading branch information
estensen committed Jan 20, 2025
1 parent 2abd641 commit f7406f2
Showing 1 changed file with 63 additions and 30 deletions.
93 changes: 63 additions & 30 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

version: 2
updates:
# bolt-sidecar: breaking major and pre v1 updates
- package-ecosystem: "cargo"
directory: "/bolt-sidecar"
labels:
Expand All @@ -13,19 +14,30 @@ updates:
interval: "weekly"
day: "monday"
time: "07:00"
groups:
sidecar-breaking:
patterns:
- "*"
ignore:
- dependency-name: "*"
versions: ">=1.0.0"
update-types:
- "major"
sidecar-non-breaking:
patterns:
- "*"
- "version-update:semver-minor"
- "version-update:semver-patch"

# bolt-sidecar: non-breaking minor and patch updates
- package-ecosystem: "cargo"
directory: "/bolt-sidecar"
labels:
- "T: security"
schedule:
interval: "weekly"
day: "monday"
time: "07:00"
ignore:
- dependency-name: "*"
versions: "<1.0.0"
- dependency-name: "*"
update-types:
- "minor"
- "patch"
- "version-update:semver-major"

# bolt-cli: breaking major and pre v1 updates
- package-ecosystem: "cargo"
directory: "/bolt-cli"
labels:
Expand All @@ -34,19 +46,30 @@ updates:
interval: "weekly"
day: "monday"
time: "07:00"
groups:
cli-breaking:
patterns:
- "*"
ignore:
- dependency-name: "*"
versions: ">=1.0.0"
update-types:
- "major"
cli-non-breaking:
patterns:
- "*"
- "version-update:semver-minor"
- "version-update:semver-patch"

# bolt-cli: non-breaking minor and patch updates
- package-ecosystem: "cargo"
directory: "/bolt-cli"
labels:
- "T: security"
schedule:
interval: "weekly"
day: "monday"
time: "07:00"
ignore:
- dependency-name: "*"
versions: "<1.0.0"
- dependency-name: "*"
update-types:
- "minor"
- "patch"
- "version-update:semver-major"

# bolt-boost: breaking major and pre v1 updates
- package-ecosystem: "cargo"
directory: "/bolt-boost"
labels:
Expand All @@ -55,15 +78,25 @@ updates:
interval: "weekly"
day: "monday"
time: "07:00"
groups:
boost-breaking:
patterns:
- "*"
ignore:
- dependency-name: "*"
versions: ">=1.0.0"
update-types:
- "major"
boost-non-breaking:
patterns:
- "*"
- "version-update:semver-minor"
- "version-update:semver-patch"

# bolt-boost: non-breaking minor and patch updates
- package-ecosystem: "cargo"
directory: "/bolt-boost"
labels:
- "T: security"
schedule:
interval: "weekly"
day: "monday"
time: "07:00"
ignore:
- dependency-name: "*"
versions: "<1.0.0"
- dependency-name: "*"
update-types:
- "minor"
- "patch"
- "version-update:semver-major"

0 comments on commit f7406f2

Please sign in to comment.