-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdependabot.yml
More file actions
69 lines (68 loc) · 2.14 KB
/
dependabot.yml
File metadata and controls
69 lines (68 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# See https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: tuesday
open-pull-requests-limit: 2
versioning-strategy: increase
rebase-strategy: "disabled"
commit-message:
prefix: "chore(deps)"
prefix-development: "chore(deps-dev)"
labels:
- dependencies
- javascript
- skip-changelog
reviewers:
- process-analytics/pa-collaborators
ignore:
# typescript must not be updated in packages/check-ts-support. Its version must remain unchanged to test the minimum version supported by bpmn-visualization-addons
# For more details, see:
# https://github.com/process-analytics/bpmn-visualization-addons/pull/90
# https://github.com/process-analytics/bpmn-visualization-addons/pull/92
- dependency-name: "typescript"
# We must use an old version in packages/check-ts-support that works with the typescript version used in this package.
# As the typescript version is old, it requires an old version of "@types/node".
- dependency-name: "@types/node"
groups:
css:
patterns:
- "autoprefixer"
- "cssnano"
- "postcss*"
- "tailwindcss"
lint:
patterns:
- "@eslint/*"
- "@types/eslint"
- "eslint*"
- "eslint-*"
- "lint-staged"
- "prettier"
- "typescript-eslint"
test:
patterns:
- "@jest/*"
- "@testing-library/*"
- "@swc/*"
- "jest"
- "jest-*"
- package-ecosystem: "github-actions"
# Workflow files stored in the default location of `.github/workflows`
directory: "/"
schedule:
interval: "weekly"
day: tuesday
open-pull-requests-limit: 2
rebase-strategy: "disabled"
commit-message:
prefix: "chore(gha)"
labels:
- dependencies
- github_actions
- skip-changelog
reviewers:
- process-analytics/pa-collaborators