|
1 | 1 | # To get started with Dependabot version updates, you'll need to specify which |
2 | 2 | # package ecosystems to update and where the package manifests are located. |
3 | 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 |
| 4 | +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates |
5 | 5 |
|
6 | 6 | version: 2 |
7 | 7 | updates: |
8 | | - - package-ecosystem: "nuget" # See documentation for possible values |
9 | | - directory: "Auth/LearningHub.Nhs.Auth/" # Location of package manifests |
| 8 | + - package-ecosystem: "nuget" |
| 9 | + directory: "/" # Location of package manifests |
| 10 | + schedule: |
| 11 | + interval: "daily" |
10 | 12 | open-pull-requests-limit: 1 |
| 13 | + target-branch: "Automatic_version_update_dependabot" |
| 14 | + ignore: |
| 15 | + # Ignore updates to packages that start with 'Wildcards' |
| 16 | + - dependency-name: "Microsoft.FeatureManagement.AspNetCore*" |
| 17 | + # Ignore some updates to the package |
| 18 | + - dependency-name: "Microsoft.VisualStudio.Web.CodeGeneration.Design" |
| 19 | + versions: [">7.0.0"] |
| 20 | + - dependency-name: "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" |
| 21 | + versions: [">7.0.0"] |
| 22 | + - dependency-name: "Microsoft.AspNetCore.Mvc.Testing" |
| 23 | + versions: [">7.0.0"] |
| 24 | + - dependency-name: "Selenium.WebDriver.ChromeDriver" |
| 25 | + versions: ">=113.0.5672.1278" # Recommended version |
| 26 | + # For all packages, ignore all patch updates |
| 27 | + #- dependency-name: "*" |
| 28 | + # update-types: ["version-update:semver-patch"] |
| 29 | + |
| 30 | + # Configuration for npm WebUI |
| 31 | + - package-ecosystem: "npm" |
| 32 | + directory: "Auth/LearningHub.Nhs.Auth/" # Location of package manifests |
11 | 33 | schedule: |
12 | 34 | interval: "daily" |
| 35 | + target-branch: "Automatic_version_update_dependabot" |
| 36 | + # - "dependencies" |
| 37 | + open-pull-requests-limit: 1 |
| 38 | + ignore: |
| 39 | + - dependency-name: "*" |
| 40 | + update-types: ["version-update:semver-major"] |
0 commit comments