Skip to content

Commit ba0da79

Browse files
authored
Merge pull request #792 from wmundev/feature/add-dependabot
feat: add dependabot for this project for minor and patch updates for nuget packages and github actions
2 parents f295e05 + 548e980 commit ba0da79

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

.github/dependabot.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
# Maintain dependencies for GitHub Actions
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
schedule:
12+
interval: "monthly"
13+
open-pull-requests-limit: 3
14+
- package-ecosystem: "nuget"
15+
directory: "/src/NSubstitute"
16+
schedule:
17+
interval: "monthly"
18+
open-pull-requests-limit: 3
19+
groups:
20+
nsubstitute_minor_patch_updates:
21+
update-types:
22+
- "minor"
23+
- "patch"
24+
ignore:
25+
- dependency-name: "*"
26+
update-types: ["version-update:semver-major"]
27+
- package-ecosystem: "nuget"
28+
directory: "/tests/NSubstitute.Acceptance.Specs"
29+
schedule:
30+
interval: "monthly"
31+
open-pull-requests-limit: 3
32+
groups:
33+
nsubstitute_acceptance_specs_minor_patch_updates:
34+
update-types:
35+
- "minor"
36+
- "patch"
37+
ignore:
38+
- dependency-name: "*"
39+
update-types: ["version-update:semver-major"]
40+
- package-ecosystem: "nuget"
41+
directory: "/tests/NSubstitute.Benchmarks"
42+
schedule:
43+
interval: "monthly"
44+
open-pull-requests-limit: 3
45+
groups:
46+
nsubstitute_benchmarks_minor_patch_updates:
47+
update-types:
48+
- "minor"
49+
- "patch"
50+
ignore:
51+
- dependency-name: "*"
52+
update-types: ["version-update:semver-major"]

0 commit comments

Comments
 (0)