mirror of
https://github.com/signalapp/Signal-Server
synced 2026-08-22 09:17:38 +01:00
27 lines
781 B
YAML
27 lines
781 B
YAML
version: 2
|
|
updates:
|
|
- package-ecosystem: github-actions
|
|
directory: /
|
|
schedule:
|
|
interval: monthly
|
|
groups:
|
|
minor-actions-dependencies:
|
|
# GitHub Actions: Only group minor and patch updates (we want to carefully review major updates)
|
|
update-types: [ minor, patch ]
|
|
|
|
- package-ecosystem: maven
|
|
directories: [ "**/*" ]
|
|
schedule:
|
|
interval: monthly
|
|
ignore:
|
|
# Only patch updates don't require coordination with the deployed database
|
|
- dependency-name: "org.foundationdb:fdb-java"
|
|
update-types:
|
|
- version-update:semver-major
|
|
- version-update:semver-minor
|
|
groups:
|
|
minor-java-dependencies:
|
|
# Java: Only group minor and patch updates (we want to carefully review major updates)
|
|
update-types: [ minor, patch ]
|
|
|