|
| 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 | +# For more details, refer to the documentation: |
| 4 | +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates |
| 5 | +version: 2 |
| 6 | +updates: |
| 7 | + # GitHub Actions dependencies |
| 8 | + - package-ecosystem: "github-actions" |
| 9 | + directory: "/" |
| 10 | + schedule: |
| 11 | + interval: "monthly" |
| 12 | + commit-message: |
| 13 | + prefix: "build" |
| 14 | + target-branch: "dependabotchanges" |
| 15 | + open-pull-requests-limit: 10 |
| 16 | + |
| 17 | + # .NET NuGet dependencies for Backend API (Multiple Projects) |
| 18 | + - package-ecosystem: "nuget" |
| 19 | + directory: "/App/backend-api/Microsoft.GS.DPS" |
| 20 | + schedule: |
| 21 | + interval: "monthly" |
| 22 | + commit-message: |
| 23 | + prefix: "build" |
| 24 | + target-branch: "dependabotchanges" |
| 25 | + open-pull-requests-limit: 30 |
| 26 | + |
| 27 | + - package-ecosystem: "nuget" |
| 28 | + directory: "/App/backend-api/Microsoft.GS.DPS.Host" |
| 29 | + schedule: |
| 30 | + interval: "monthly" |
| 31 | + commit-message: |
| 32 | + prefix: "build" |
| 33 | + target-branch: "dependabotchanges" |
| 34 | + open-pull-requests-limit: 30 |
| 35 | + |
| 36 | + # .NET NuGet dependencies for Kernel Memory Clients |
| 37 | + - package-ecosystem: "nuget" |
| 38 | + directory: "/App/kernel-memory/clients/dotnet/SemanticKernelPlugin" |
| 39 | + schedule: |
| 40 | + interval: "monthly" |
| 41 | + commit-message: |
| 42 | + prefix: "build" |
| 43 | + target-branch: "dependabotchanges" |
| 44 | + open-pull-requests-limit: 30 |
| 45 | + |
| 46 | + - package-ecosystem: "nuget" |
| 47 | + directory: "/App/kernel-memory/clients/dotnet/WebClient" |
| 48 | + schedule: |
| 49 | + interval: "monthly" |
| 50 | + commit-message: |
| 51 | + prefix: "build" |
| 52 | + target-branch: "dependabotchanges" |
| 53 | + open-pull-requests-limit: 30 |
| 54 | + |
| 55 | + # npm dependencies for Frontend App |
| 56 | + - package-ecosystem: "npm" |
| 57 | + directory: "/App/frontend-app" |
| 58 | + schedule: |
| 59 | + interval: "monthly" |
| 60 | + commit-message: |
| 61 | + prefix: "build" |
| 62 | + target-branch: "dependabotchanges" |
| 63 | + open-pull-requests-limit: 30 |
0 commit comments