Skip to content

Commit 8c3dbc2

Browse files
authored
Allow dependabot to update dev dependencies (#144)
* Allow dependabot to update dev dependencies * Update CHANGELOG
1 parent c6ecfdb commit 8c3dbc2

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.github/dependabot.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "pip" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"
12+
# Raise pull requests for dependency updates against `develop`
13+
target-branch: "main"
14+
allow:
15+
- dependency-type: "development"
16+
# Include a list of updates with a notable prefix
17+
commit-message:
18+
prefix: "chore"
19+
prefix-development: "chore"
20+
include: "scope"
21+
groups:
22+
# Note: The group order matters, since updates are assigned to the first matching group.
23+
dev-dependencies:
24+
dependency-type: "development"

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
# [Unreleased]
8+
- [PR 144](https://github.com/salesforce/django-declarative-apis/pull/141) Allow Dependabot to update dev dependencies
89
- [PR 143](https://github.com/salesforce/django-declarative-apis/pull/143) Testing: Replace `flake8` and `black` with `ruff`, add testing for Python 3.12, drop testing for Python 3.7
910

1011
# [0.31.5]

0 commit comments

Comments
 (0)