Skip to content

Commit

Permalink
chore: update dependabot configuration to include yarn package ecosys…
Browse files Browse the repository at this point in the history
…tem (#2191)

This pull request includes several changes to the
`.github/dependabot.yml` file to standardize the use of single quotes in
patterns and add new dependency update configurations for the `yarn`
package ecosystem.

Addition of `yarn` package ecosystem:

* Added a new `yarn` package ecosystem configuration with directories
for `frontend/webapp`, `docs`, `agents/nodejs-native-community`, and
`tests/e2e/workload-lifecycle/services/nodejs-http-server`.
  • Loading branch information
BenElferink authored Jan 12, 2025
1 parent b0002de commit 88abaf5
Showing 1 changed file with 28 additions and 15 deletions.
43 changes: 28 additions & 15 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
- package-ecosystem: 'github-actions'
directory: /
schedule:
day: sunday
Expand All @@ -23,9 +23,9 @@ updates:
groups:
otel-dependencies:
patterns:
- "go.opentelemetry.io*"
- 'go.opentelemetry.io*'
exclude-patterns: # go auto instrumentations update is manually
- "go.opentelemetry.io/auto"
- 'go.opentelemetry.io/auto'
- package-ecosystem: gomod
directory: /odiglet
schedule:
Expand All @@ -34,7 +34,7 @@ updates:
groups:
go-auto-instrumentations:
patterns:
- "go.opentelemetry.io/auto"
- 'go.opentelemetry.io/auto'
- package-ecosystem: gomod
directory: /autoscaler
schedule:
Expand All @@ -43,8 +43,8 @@ updates:
groups:
k8s-dependencies:
patterns:
- "k8s.io*"
- "sigs.k8s.io*"
- 'k8s.io*'
- 'sigs.k8s.io*'
- package-ecosystem: gomod
directory: /odiglet
schedule:
Expand All @@ -53,8 +53,8 @@ updates:
groups:
k8s-dependencies:
patterns:
- "k8s.io*"
- "sigs.k8s.io*"
- 'k8s.io*'
- 'sigs.k8s.io*'
- package-ecosystem: gomod
directory: /scheduler
schedule:
Expand All @@ -63,8 +63,8 @@ updates:
groups:
k8s-dependencies:
patterns:
- "k8s.io*"
- "sigs.k8s.io*"
- 'k8s.io*'
- 'sigs.k8s.io*'
- package-ecosystem: gomod
directory: /cli
schedule:
Expand All @@ -73,8 +73,8 @@ updates:
groups:
k8s-dependencies:
patterns:
- "k8s.io*"
- "sigs.k8s.io*"
- 'k8s.io*'
- 'sigs.k8s.io*'
- package-ecosystem: gomod
directory: /instrumentor
schedule:
Expand All @@ -83,8 +83,8 @@ updates:
groups:
k8s-dependencies:
patterns:
- "k8s.io*"
- "sigs.k8s.io*"
- 'k8s.io*'
- 'sigs.k8s.io*'
- package-ecosystem: pip
directory: /odiglet/agents/python
schedule:
Expand All @@ -93,4 +93,17 @@ updates:
groups:
otel-dependencies:
patterns:
- "opentelemetry*"
- 'opentelemetry*'
- package-ecosystem: yarn
directories:
- /frontend/webapp
- /docs
- /agents/nodejs-native-community
- /tests/e2e/workload-lifecycle/services/nodejs-http-server
schedule:
day: sunday
interval: weekly
groups:
otel-dependencies:
patterns:
- 'opentelemetry*'

0 comments on commit 88abaf5

Please sign in to comment.