Skip to content

Commit 9edde96

Browse files
authored
Try to fix dependabot (#7895)
## Summary of changes Try to exclude the analyzer projects from dependabot, seeing as it causes it to blow up ## Reason for change Dependabot has been broken for a while ## Implementation details Try to exclude the projects. I have little faith this will work, but also no way of testing it. ## Test coverage Nope
1 parent c288107 commit 9edde96

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ updates:
5656
# Src libraries
5757
- package-ecosystem: "nuget"
5858
directory: "/tracer/src/Datadog.Trace"
59+
# These cause dependabot to blow up for some unknown reason
60+
exclude-paths:
61+
- "../Datadog.Trace.Tools.Analyzers/**"
62+
- "../Datadog.Trace.Tools.Analyzers.CodeFixes/**"
5963
registries: "*"
6064
schedule:
6165
interval: "daily"
@@ -82,6 +86,10 @@ updates:
8286

8387
- package-ecosystem: "nuget"
8488
directory: "/tracer/src/Datadog.Trace.OpenTracing"
89+
# These cause dependabot to blow up for some unknown reason
90+
exclude-paths:
91+
- "../Datadog.Trace.Tools.Analyzers/**"
92+
- "../Datadog.Trace.Tools.Analyzers.CodeFixes/**"
8593
registries: "*"
8694
schedule:
8795
interval: "daily"
@@ -105,6 +113,10 @@ updates:
105113

106114
- package-ecosystem: "nuget"
107115
directory: "/tracer/src/Datadog.Trace.BenchmarkDotNet"
116+
# These cause dependabot to blow up for some unknown reason
117+
exclude-paths:
118+
- "../Datadog.Trace.Tools.Analyzers/**"
119+
- "../Datadog.Trace.Tools.Analyzers.CodeFixes/**"
108120
registries: "*"
109121
schedule:
110122
interval: "daily"

0 commit comments

Comments
 (0)