Skip to content

Commit dd62a08

Browse files
committed
chore(deps): update dependabot config to include pr prefixes
Add commit-message.prefix config option to dependabot so that dependabot pull request titles pass our new PR Title Linting workflow - [x] include current dependency updates (black and mypy) Signed-off-by: jmeridth <[email protected]>
1 parent f34fc70 commit dd62a08

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/dependabot.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
---
2-
# To get started with Dependabot version updates, you'll need to specify which
3-
# package ecosystems to update and where the package manifests are located.
4-
# Please see the documentation for all configuration options:
5-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
6-
72
version: 2
83
updates:
94
- package-ecosystem: "pip" # See documentation for possible values
105
directory: "/" # Location of package manifests
116
schedule:
127
interval: "daily"
8+
commit-message:
9+
prefix: "chore(deps)"
1310
- package-ecosystem: "github-actions"
1411
directory: "/"
1512
schedule:
1613
interval: "daily"
14+
commit-message:
15+
prefix: "chore(deps)"
1716
- package-ecosystem: "docker"
1817
directory: "/"
1918
schedule:
2019
interval: "daily"
20+
commit-message:
21+
prefix: "chore(deps)"

requirements-test.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
black==24.4.0
1+
black==24.4.1
22
flake8==7.0.0
3-
mypy==1.9.0
3+
mypy==1.10.0
44
mypy-extensions==1.0.0
55
pylint==3.1.0
66
pytest==8.1.1

0 commit comments

Comments
 (0)