Skip to content

Commit 4fc7999

Browse files
committed
ci: enable and configure Dependabot
Part of #1590
1 parent c7e15be commit 4fc7999

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# See for details:
2+
# - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates
3+
# - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
4+
version: 2
5+
updates:
6+
7+
- package-ecosystem: "maven"
8+
directory: "/"
9+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#allow
10+
allow:
11+
- dependency-name: "org.jsoup:jsoup"
12+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#scheduleinterval
13+
schedule:
14+
interval: "daily"
15+
time: "08:00"
16+
timezone: "Asia/Novosibirsk"
17+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#commit-message
18+
commit-message:
19+
prefix: "chore"
20+
assignees: [ "php-coder" ]
21+
reviewers: [ "php-coder" ]
22+
labels: [ "kind/dependency-update" ]

0 commit comments

Comments
 (0)