mirror of
https://github.com/prometheus/prometheus.git
synced 2026-07-08 08:41:36 -04:00
Add `.github/dependabot.yml` to the repo sync script. * Sync is optional. * Add feature to skip files that contain the string `no_prometheus_repo_sync`. * Add generic dependabot config for Go and GitHub Actions ecosystems. Signed-off-by: SuperQ <superq@gmail.com>
37 lines
929 B
YAML
37 lines
929 B
YAML
version: 2
|
|
updates:
|
|
- package-ecosystem: "gomod"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "monthly"
|
|
groups:
|
|
aws:
|
|
patterns:
|
|
- "github.com/aws/*"
|
|
go.opentelemetry.io:
|
|
patterns:
|
|
- "go.opentelemetry.io/*"
|
|
golang.org-x:
|
|
patterns:
|
|
- "golang.org/x/*"
|
|
k8s.io:
|
|
patterns:
|
|
- "k8s.io/*"
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "monthly"
|
|
groups:
|
|
promci:
|
|
patterns:
|
|
- "prometheus/promci*"
|
|
codeql:
|
|
patterns:
|
|
- "github/codeql-action*"
|
|
# Exclude configs synced from upstream prometheus/prometheus.
|
|
exclude-paths:
|
|
- .github/workflows/container_description.yml
|
|
- .github/workflows/golangci-lint.yml
|
|
- .github/workflows/govulncheck.yml
|
|
- .github/workflows/scorecards.yml
|
|
- .github/workflows/stale.yml
|