Skip to content

Commit 080ba1b

Browse files
committed
Added Dependbot yml file for auto scan packages and raised the PR
Signed-off-by: DeepakNemad <deepak.nemade@ayanworks.com>
1 parent 21b0336 commit 080ba1b

2 files changed

Lines changed: 820 additions & 773 deletions

File tree

.github/workflows/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# .github/dependabot.yml
2+
3+
version: 2
4+
5+
updates:
6+
# 1) Update GitHub Actions used in workflows (.github/workflows/*.yml)
7+
- package-ecosystem: "github-actions"
8+
directory: "/" # Looks in .github/workflows/**/*.yml
9+
schedule:
10+
interval: "weekly"
11+
day: "monday" # Run every Monday
12+
open-pull-requests-limit: 10
13+
14+
# 2) Update Yarn dependencies (yarn.lock + package.json)
15+
- package-ecosystem: "yarn"
16+
directory: "/" # Or "/client" if your package.json is inside a subfolder
17+
schedule:
18+
interval: "weekly"
19+
day: "monday" # Run every Monday
20+
time: "09:00" # Optional: set specific time
21+
timezone: "Asia/Kolkata" # Optional: your timezone
22+
open-pull-requests-limit: 20
23+
target-branch: "main" # Branch to target

0 commit comments

Comments
 (0)