Skip to content

Commit 6b94aa4

Browse files
Merge pull request #185 from pipedrive/GRAL-4829_dependabot-update
GRAL-4829: add dependabot file
2 parents c8468c7 + 9b2cc2f commit 6b94aa4

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

.github/dependabot.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Please see the documentation for all configuration options:
2+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
3+
4+
version: 2
5+
registries:
6+
npm-pipedrive:
7+
type: npm-registry
8+
url: https://npm-registry-proxy.pipedrive.tools
9+
token: ${{ secrets.NPM_TOKEN }}
10+
github:
11+
type: git
12+
url: https://github.com
13+
username: x-access-token
14+
password: ${{ secrets.GHA_ACCESS_TOKEN }}
15+
16+
updates:
17+
# Update config based in the comment https://github.com/dependabot/dependabot-core/issues/4993#issuecomment-1289133027
18+
- package-ecosystem: 'npm'
19+
directory: '/'
20+
schedule:
21+
interval: 'daily'
22+
time: '10:00'
23+
timezone: 'Europe/Tallinn'
24+
rebase-strategy: 'disabled'
25+
registries:
26+
- npm-pipedrive
27+
- github
28+
open-pull-requests-limit: 10
29+
versioning-strategy: increase
30+
ignore:
31+
- dependency-name: '*'
32+
update-types: ['version-update:semver-major']
33+
groups:
34+
all-minor-patch-updates:
35+
patterns:
36+
- '*'
37+
update-types:
38+
- minor
39+
- patch
40+
- package-ecosystem: 'github-actions'
41+
directory: '/'
42+
schedule:
43+
interval: 'daily'
44+
time: '10:00'
45+
timezone: 'Europe/Tallinn'
46+
open-pull-requests-limit: 10
47+
ignore:
48+
- dependency-name: '*'
49+
update-types: ['version-update:semver-major']

0 commit comments

Comments
 (0)