Skip to content

Commit e54955f

Browse files
authored
Refactor dependabot.yml to streamline package ecosystems
Removed unused package ecosystems for gradle, pip, and bundler. Updated npm configuration to include registries and cooldown settings.
1 parent c07fa70 commit e54955f

File tree

1 file changed

+31
-43
lines changed

1 file changed

+31
-43
lines changed

.github/dependabot.yml

Lines changed: 31 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ updates:
88
schedule:
99
interval: "weekly"
1010
groups:
11-
actions:
11+
github-actions:
1212
patterns:
1313
- "*"
1414

@@ -21,7 +21,6 @@ updates:
2121
- "/collector/processor/coldstartprocessor"
2222
- "/collector/processor/decoupleprocessor"
2323
- "/collector/receiver/telemetryapireceiver"
24-
- "/go/sample-apps/function"
2524
schedule:
2625
interval: "weekly"
2726
groups:
@@ -32,60 +31,49 @@ updates:
3231
patterns:
3332
- "*"
3433

35-
- package-ecosystem: "gradle"
36-
directories:
37-
- "/java"
38-
schedule:
39-
interval: "weekly"
40-
groups:
41-
opentelemetry-deps-java:
42-
patterns:
43-
- "io.opentelemetry.*"
44-
java-other:
45-
patterns:
46-
- "*"
47-
4834
- package-ecosystem: "npm"
4935
directories:
5036
- "/nodejs"
5137
- "/nodejs/packages/layer"
5238
- "/nodejs/sample-apps/aws-sdk"
39+
registries:
40+
- codeartifact
5341
schedule:
5442
interval: "weekly"
43+
cooldown:
44+
default-days: 7
5545
groups:
46+
internal:
47+
patterns:
48+
- "@extend/*"
49+
- "@helloextend/*"
50+
- "extend-cdk-lib"
5651
opentelemetry-deps-nodejs:
5752
patterns:
5853
- "@opentelemetry/*"
5954
nodejs-other:
6055
patterns:
6156
- "*"
6257

63-
- package-ecosystem: "pip"
64-
directories:
65-
- "/python/src/otel"
66-
- "/python/sample-apps/function"
67-
- "/python/src/otel/otel_sdk"
68-
- "/python/src/otel/tests"
69-
schedule:
70-
interval: "weekly"
71-
groups:
72-
opentelemetry-deps-python:
73-
patterns:
74-
- "opentelemetry-*"
75-
python-other:
76-
patterns:
77-
- "*"
58+
# - package-ecosystem: "pip"
59+
# directories:
60+
# - "/python/src/otel"
61+
# - "/python/sample-apps/function"
62+
# - "/python/src/otel/otel_sdk"
63+
# - "/python/src/otel/tests"
64+
# schedule:
65+
# interval: "weekly"
66+
# groups:
67+
# opentelemetry-deps-python:
68+
# patterns:
69+
# - "opentelemetry-*"
70+
# python-other:
71+
# patterns:
72+
# - "*"
7873

79-
- package-ecosystem: "bundler"
80-
directories:
81-
- "/ruby/src/otel/layer"
82-
- "/ruby/sample-apps/function"
83-
schedule:
84-
interval: "weekly"
85-
groups:
86-
opentelemetry-deps-ruby:
87-
patterns:
88-
- "opentelemetry-*"
89-
ruby-other:
90-
patterns:
91-
- "*"
74+
registries:
75+
codeartifact:
76+
type: npm-registry
77+
url: https://extend-159581800400.d.codeartifact.us-east-1.amazonaws.com/npm/extend-npm/
78+
token: ${{secrets.CODEARTIFACT_AUTH_TOKEN}}
79+
replaces-base: true

0 commit comments

Comments
 (0)