Skip to content

Commit da9bd05

Browse files
Merge pull request #535 from Rohini-Microsoft/ckm-v2
ci: Add dependabot.yml file for dependabot Configuration to Accelerators Without Existing Setup
2 parents a1b120a + 6f2a71f commit da9bd05

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

.github/dependabot.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
version: 2
6+
7+
updates:
8+
# GitHub Actions - grouped
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
schedule:
12+
interval: "monthly"
13+
target-branch: "dependabotchanges"
14+
commit-message:
15+
prefix: "build"
16+
open-pull-requests-limit: 10
17+
groups:
18+
github-actions:
19+
patterns:
20+
- "*"
21+
22+
# Python backend dependencies - grouped
23+
- package-ecosystem: "pip"
24+
directory: "/src/api"
25+
schedule:
26+
interval: "monthly"
27+
target-branch: "dependabotchanges"
28+
commit-message:
29+
prefix: "build"
30+
open-pull-requests-limit: 10
31+
groups:
32+
backend-deps:
33+
patterns:
34+
- "*"
35+
36+
# Frontend npm dependencies - grouped
37+
- package-ecosystem: "npm"
38+
directory: "/src/App"
39+
schedule:
40+
interval: "monthly"
41+
target-branch: "dependabotchanges"
42+
commit-message:
43+
prefix: "build"
44+
open-pull-requests-limit: 10
45+
registries:
46+
- npm_public_registry
47+
groups:
48+
frontend-deps:
49+
patterns:
50+
- "*"
51+
52+
registries:
53+
npm_public_registry:
54+
type: "npm-registry"
55+
url: "https://registry.npmjs.org/"
56+
token: ${{ secrets.TOKEN }}

0 commit comments

Comments
 (0)