Skip to content

Commit d766886

Browse files
authored
Update dependabot.yml
1 parent 15e1088 commit d766886

File tree

1 file changed

+30
-13
lines changed

1 file changed

+30
-13
lines changed

.github/dependabot.yml

Lines changed: 30 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,39 @@
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/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5-
61
version: 2
2+
73
updates:
8-
- package-ecosystem: "npm" # See documentation for possible values
9-
directory: "/" # Location of package manifests
4+
# 🔧 JS пакети (npm, yarn)
5+
- package-ecosystem: "npm"
6+
directory: "/" # шлях до package.json
107
schedule:
118
interval: "weekly"
12-
- package-ecosystem: composer
13-
directory: "/"
9+
time: "22:00"
10+
open-pull-requests-limit: 5
11+
rebase-strategy: "auto"
12+
commit-message:
13+
prefix: "build(npm)"
14+
allow:
15+
- dependency-type: "direct"
16+
17+
# 🧩 PHP пакети (Laravel / Composer)
18+
- package-ecosystem: "composer"
19+
directory: "/" # шлях до composer.json
1420
schedule:
15-
interval: daily
21+
interval: "daily"
1622
time: "23:30"
1723
open-pull-requests-limit: 10
24+
rebase-strategy: "auto"
25+
commit-message:
26+
prefix: "build(composer)"
27+
allow:
28+
- dependency-type: "direct"
29+
30+
# 🤖 GitHub Actions
1831
- package-ecosystem: "github-actions"
19-
directory: "/"
32+
directory: "/" # шлях до .github/workflows
2033
schedule:
21-
interval: monthly
22-
open-pull-requests-limit: 10
34+
interval: "monthly"
35+
time: "00:30"
36+
open-pull-requests-limit: 5
37+
rebase-strategy: "auto"
38+
commit-message:
39+
prefix: "chore(actions)"

0 commit comments

Comments
 (0)