Skip to content

Commit 1a28f20

Browse files
authored
Update dependabot.yml
1 parent b39d555 commit 1a28f20

File tree

1 file changed

+31
-3
lines changed

1 file changed

+31
-3
lines changed

.github/dependabot.yml

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,40 @@
11
# To get started with Dependabot version updates, you'll need to specify which
22
# package ecosystems to update and where the package manifests are located.
33
# 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
55

66
version: 2
77
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"
1012
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
1133
schedule:
1234
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

Comments
 (0)