|
| 1 | +# To get started with Dependabot version updates, you'll need to specify which |
| 2 | +# package ecosystems to update and where the package manifests are located. |
| 3 | +# Please see the documentation for all configuration options: |
| 4 | +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file |
| 5 | + |
| 6 | +# .github/dependabot.yml |
| 7 | +# Keep GitHub Actions up to date and open a SINGLE PR that aggregates all updates. |
| 8 | + |
| 9 | +version: 2 |
| 10 | +updates: |
| 11 | + - package-ecosystem: "github-actions" # manage versions of actions used in .github/workflows |
| 12 | + directory: "/" # repo root (covers .github/workflows) |
| 13 | + schedule: |
| 14 | + interval: "weekly" # run once a week |
| 15 | + day: "monday" # every Monday |
| 16 | + time: "04:00" # at 04:00 local time |
| 17 | + timezone: "Europe/Sofia" |
| 18 | + target-branch: "main" # PRs will target this branch |
| 19 | + open-pull-requests-limit: 10 # safety cap (not really needed with grouping) |
| 20 | + commit-message: |
| 21 | + prefix: "chore" # e.g., "chore: bump actions/*" |
| 22 | + include: "scope" |
| 23 | + groups: |
| 24 | + all-actions: # SINGLE PR with everything inside |
| 25 | + patterns: ["*"] # match all actions |
| 26 | + update-types: ["major", "minor", "patch"] # include all types of bumps |
| 27 | + |
| 28 | + - package-ecosystem: "nuget" # manage NuGet packages in .csproj/.sln files |
| 29 | + directory: "/" # Dependabot discovers projects recursively |
| 30 | + schedule: |
| 31 | + interval: "weekly" # run once a week |
| 32 | + day: "monday" # every Monday |
| 33 | + time: "04:00" # at 04:00 local time |
| 34 | + timezone: "Europe/Sofia" |
| 35 | + target-branch: "main" # PRs will target this branch |
| 36 | + open-pull-requests-limit: 10 # safety cap (not really needed with grouping) |
| 37 | + commit-message: |
| 38 | + prefix: "chore" # e.g., "chore: bump MySqlConnector" |
| 39 | + include: "scope" |
| 40 | + groups: |
| 41 | + all-nuget: # SINGLE PR with everything inside |
| 42 | + patterns: ["*"] # match all packages |
| 43 | + update-types: ["major", "minor", "patch"] # include all types of bumps |
0 commit comments