Skip to content

Commit 4e88938

Browse files
committed
docs: add Conventional Commits requirement to contributing guidelines
Configure Dependabot to use conventional commit prefixes for its automated dependency and CI updates.
1 parent 626fd8c commit 4e88938

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ updates:
66
directory: "/"
77
schedule:
88
interval: "daily"
9+
commit-message:
10+
prefix: "chore(deps)"
11+
prefix-development: "chore(deps-dev)"
12+
913
- package-ecosystem: "github-actions"
1014
directory: "/"
1115
schedule:
1216
interval: "daily"
17+
commit-message:
18+
prefix: "chore(ci)"

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ All submissions need to be reviewed by at least one jbanking committer before be
144144
- Commits should be atomic and semantic.
145145
Please properly squash your pull requests before submitting them.
146146
Fixup commits can be used temporarily during the review process, but things should be squashed at the end to have meaningful commits.
147+
- Commit messages must follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification.
147148
- Git authorship (i.e., git `user.name` and `user.email`) must be properly set.
148149
- Tests and documentation are not optional.
149150
Remember to include tests in your pull requests.

0 commit comments

Comments
 (0)