We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b0336 commit 080ba1bCopy full SHA for 080ba1b
2 files changed
.github/workflows/dependabot.yml
@@ -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
18
19
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