-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependabot.yml
46 lines (43 loc) · 1.25 KB
/
dependabot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# This workflow is designed to automate the update process for various package ecosystems,
# ensuring that dependencies are kept up-to-date with regular checks.
#
# For more details about configuring Dependabot, see full documentations here:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
# Configuration for pip
- package-ecosystem: "pip"
directory: "/" # Search for "requirements.txt" on root directory
schedule:
interval: "weekly"
commit-message:
prefix: "pip"
include: "scope"
labels:
- "dependencies"
assignees:
- "mitsuki31"
# Configuration for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/" # Search for ".github/workflows" on root directory
schedule:
interval: "daily"
commit-message:
prefix: "GH Actions"
include: "scope"
labels:
- "chore"
assignees:
- "mitsuki31"
# Configuration for Maven
- package-ecosystem: "maven"
directory: "/" # Search for "pom.xml" on root directory
schedule:
interval: "weekly"
commit-message:
prefix: "Maven"
include: "scope"
labels:
- "dependencies"
assignees:
- "mitsuki31"