Skip to content

Commit

Permalink
ci: add Go directories to dependabot configuration (#16)
Browse files Browse the repository at this point in the history
* ci: specify go module directories for dependabot

* chore: add comment to use glob for directories
  • Loading branch information
rogercoll authored Jun 19, 2024
1 parent d159779 commit d21445a
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
---
version: 2
updates:
#TODO: Replace go directories with wildcard https://github.com/dependabot/dependabot-core/issues/2178
- package-ecosystem: "gomod"
directory: "/"
directory: "/processor/elasticinframetricsprocessor/"
schedule:
interval: "daily"
labels:
- automation
groups:
otel-dependencies:
patterns: ["go.opentelemetry.io/*"]
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]

- package-ecosystem: "gomod"
directory: "/internal/tools/"
schedule:
interval: "daily"
labels:
- automation
- tools
groups:
otel-dependencies:
patterns: ["go.opentelemetry.io/*"]
Expand Down

0 comments on commit d21445a

Please sign in to comment.