Skip to content

Commit

Permalink
maint: update package paths for dependabot (#218)
Browse files Browse the repository at this point in the history
## Which problem is this PR solving?
updates package paths for dependabot, now that we've got multiple
packages
  • Loading branch information
MustafaHaddara authored Aug 2, 2024
1 parent 5e51815 commit a007696
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
version: 2
updates:
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/' # Location of package manifests
directory: '/packages/honeycomb-opentelemetry-web' # Location of package manifests
schedule:
interval: 'weekly' # Check for updates every week
labels:
Expand All @@ -33,7 +33,7 @@ updates:
- dependency-name: '*'
update-types: ['version-update:semver-major'] # Ignore major version updates for all packages.
- package-ecosystem: 'npm'
directory: '/examples/hello-world-web' # Location of package manifests
directory: '/packages/honeycomb-opentelemetry-web/examples/hello-world-web' # Location of package manifests
schedule:
interval: 'weekly' # Check for updates every week
labels:
Expand All @@ -47,3 +47,30 @@ updates:
example-deps:
patterns:
- '*' # Update all dependencies in example app
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/packages/honeycomb-react-user-instrumentation' # Location of package manifests
schedule:
interval: 'weekly' # Check for updates every week
labels:
- 'type: dependencies' # Add label
reviewers:
- 'honeycombio/pink-gremlins'
commit-message:
prefix: 'maint' # Add PR title prefix
include: 'scope'
groups:
otel:
patterns:
- '@opentelemetry/*' # Update all otel dependencies together
dev-dependencies: # Update dev dependencies together instead of piecemeal
patterns:
- '@type*'
- 'cypress'
- 'eslint*'
- 'jest*'
- 'prettier'
- 'ts-*'
- 'typescript'
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-major'] # Ignore major version updates for all packages.

0 comments on commit a007696

Please sign in to comment.