Skip to content

Commit

Permalink
chore(dependabot): fix nuget scanning
Browse files Browse the repository at this point in the history
add src directory as sln file was found and divide into two nuget scans due to timeout of Github action run after 55 minutes without split
  • Loading branch information
evegufy committed Sep 19, 2024
1 parent 9a261d8 commit de56543
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,42 @@
---
version: 2
updates:

# Divide into two nuget scans due to timeout of Github action run after 55 minutes without split

# NuGet
-
package-ecosystem: "nuget"
directory: /
directory: "/src/"
labels:
- "dependabot"
- "dependencies"
schedule:
interval: "weekly"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
allow:
- dependency-name: "Microsoft.*"
groups:
default:
patterns:
- "*"

# NuGet
-
package-ecosystem: "nuget"
directory: "/src/"
# Makes it possible to have another nuget configuration for the same directory.
# https://github.com/dependabot/dependabot-core/issues/1778#issuecomment-1988140219
target-branch: main
labels:
- "dependabot"
- "dependencies"
schedule:
interval: "weekly"
ignore:
- dependency-name: "Microsoft.*"
- dependency-name: "*"
update-types: ["version-update:semver-major"]
groups:
Expand Down Expand Up @@ -64,4 +90,4 @@ updates:
update-types: ["version-update:semver-major"]
groups:
dependencies:
dependency-type: "production"
dependency-type: "production"

0 comments on commit de56543

Please sign in to comment.