Skip to content

Commit 1eb602e

Browse files
committed
PLT-1410 Ease Dev Expr with dependabot
1 parent 3c4025d commit 1eb602e

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/dependabot.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
version: 2
2+
registries:
3+
npm-npmjs:
4+
type: npm-registry
5+
url: https://registry.npmjs.org
6+
replaces-base: true
7+
token: ${{ secrets.NPM_TOKEN }}
8+
github-flaconi-ci:
9+
type: git
10+
url: https://github.com
11+
username: x-access-token
12+
password: ${{secrets.REPO_READ_TOKEN}}
13+
updates:
14+
- package-ecosystem: npm
15+
directory: "/"
16+
schedule:
17+
interval: daily
18+
time: "08:00"
19+
timezone: Europe/Berlin
20+
open-pull-requests-limit: 10
21+
registries:
22+
- npm-npmjs
23+
ignore:
24+
- dependency-name: "node-fetch"
25+
versions: ["3.x"]
26+
groups:
27+
production:
28+
dependency-type: production
29+
update-types: [minor, patch]
30+
production-major:
31+
dependency-type: production
32+
update-types: [major]
33+
development:
34+
dependency-type: development
35+
- package-ecosystem: github-actions
36+
directory: "/"
37+
schedule:
38+
interval: weekly
39+
day: monday
40+
time: "08:00"
41+
timezone: Europe/Berlin
42+
registries:
43+
- github-flaconi-ci

0 commit comments

Comments
 (0)