|
1 | 1 | --- |
| 2 | +# source: github/sae-common-workflows/action-ln/sae-iam/dependabot/dependabot.yml |
| 3 | +# It's fine to have dependabot consider more languages than used in the repo. |
2 | 4 | version: 2 |
| 5 | + |
| 6 | +registries: |
| 7 | + ghcr: |
| 8 | + type: "docker-registry" |
| 9 | + url: "ghcr.io" |
| 10 | + username: "PAT" |
| 11 | + password: "${{secrets.CONTAINER_BUILDER_TOKEN}}" |
| 12 | + rubygems-github-packages: |
| 13 | + type: "rubygems-server" |
| 14 | + url: "rubygems.pkg.github.com/github" |
| 15 | + token: "${{secrets.CONTAINER_BUILDER_TOKEN}}" |
| 16 | + |
| 17 | +# Group all updates into a single PR |
| 18 | +multi-ecosystem-groups: |
| 19 | + all: |
| 20 | + schedule: |
| 21 | + interval: "monthly" |
| 22 | + |
3 | 23 | updates: |
4 | | - - package-ecosystem: bundler |
| 24 | + - package-ecosystem: "bundler" |
| 25 | + multi-ecosystem-group: "all" |
5 | 26 | vendor: true |
6 | 27 | directory: "/" |
7 | | - schedule: |
8 | | - interval: weekly |
9 | | - day: "monday" |
10 | | - time: "21:00" |
11 | | - groups: |
12 | | - prod-ruby-dependencies: |
13 | | - dependency-type: "production" |
14 | | - patterns: |
15 | | - - "*" |
16 | | - dev-ruby-dependencies: |
17 | | - dependency-type: "development" |
18 | | - patterns: |
19 | | - - "*" |
20 | | - - package-ecosystem: github-actions |
| 28 | + registries: ["rubygems-github-packages"] |
| 29 | + patterns: ["*"] |
| 30 | + |
| 31 | + - package-ecosystem: "docker" |
| 32 | + multi-ecosystem-group: "all" |
21 | 33 | directory: "/" |
22 | | - groups: |
23 | | - github-actions: |
24 | | - patterns: |
25 | | - - "*" |
26 | | - schedule: |
27 | | - interval: weekly |
28 | | - day: "tuesday" |
29 | | - time: "21:00" |
| 34 | + registries: ["ghcr"] |
| 35 | + patterns: ["*"] |
| 36 | + |
| 37 | + - package-ecosystem: "github-actions" |
| 38 | + multi-ecosystem-group: "all" |
| 39 | + directory: "/" |
| 40 | + patterns: ["*"] |
| 41 | + ignore: |
| 42 | + - dependency-name: "github/internal-actions" |
| 43 | + |
| 44 | + - package-ecosystem: "pip" |
| 45 | + multi-ecosystem-group: "all" |
| 46 | + directory: "/" |
| 47 | + patterns: ["*"] |
| 48 | + |
| 49 | + - package-ecosystem: "gomod" |
| 50 | + multi-ecosystem-group: "all" |
| 51 | + directory: "/" |
| 52 | + patterns: ["*"] |
| 53 | + |
| 54 | + - package-ecosystem: npm |
| 55 | + multi-ecosystem-group: "all" |
| 56 | + directory: "/" |
| 57 | + patterns: ["*"] |
0 commit comments