3x-ui/.github/dependabot.yml
2025-03-08 19:36:15 +03:00

73 lines
2.1 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: 2
updates:
# 🔹 1. Обновление Go-зависимостей
- package-ecosystem: "gomod"
directory: "/" # Корень репозитория, где находится go.mod
schedule:
interval: "weekly"
day: "monday" # Добавлен день недели для запуска1
time: "00:00"
timezone: "UTC" # Добавлена явная временная зона
open-pull-requests-limit: 5
reviewers:
- "civisrom"
labels:
- "dependencies"
- "go"
commit-message:
prefix: "chore(deps)"
include: "scope"
ignore:
- dependency-name: "gvisor.dev/gvisor"
- dependency-name: "github.com/mymmrac/telego"
allow:
- dependency-type: "direct"
groups:
minor-patch-dependencies:
patterns:
- "*"
update-types:
- "minor"
- "patch"
# 🔹 2. Обновление GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "wednesday" # Делаем обновление в другой день для распределения нагрузки
timezone: "UTC"
open-pull-requests-limit: 3
reviewers:
- "civisrom"
labels:
- "dependencies"
- "github-actions"
commit-message:
prefix: "chore(ci)"
include: "scope"
groups:
github-actions:
patterns:
- "*"
# 🔹 3. Обновление Docker-зависимостей
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
day: "friday" # Обновление в пятницу
timezone: "UTC"
open-pull-requests-limit: 2
reviewers:
- "civisrom"
labels:
- "dependencies"
- "docker"
commit-message:
prefix: "chore(docker)"
include: "scope"
# Исключение неиспользуемых или проблемных образов
# ignore:
# - dependency-name: "node"
# versions: ["13.x", "15.x"]