forked from dj-stripe/dj-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependabot.yml
32 lines (28 loc) · 985 Bytes
/
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
# Config for Dependabot updates. See Documentation here:
# https://docs.github.com/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
version: 2
updates:
# Update Github actions in workflows
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
commit-message:
# Prefix all commit messages with "[actions] " (no colon, but a trailing whitespace)
prefix: "[actions] "
# Labels on pull requests for version updates only
labels:
- "update"
- "action dependencies"
# Update python packages
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "monthly"
commit-message:
# Prefix all commit messages with "[python] " (no colon, but a trailing whitespace)
prefix: "[python] "
# Labels on pull requests for version updates only
labels:
- "update"
- "pip dependencies"