Skip to content

Commit

Permalink
build: use chore(deps) prefix for dependabot commits
Browse files Browse the repository at this point in the history
- per https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#commit-message
- this matches the prefix we normally use for dependency updates
  - also this matches what dependabot was doing for non-security updates, not sure why it used `build(deps)` for security updates (??)
  • Loading branch information
agilgur5 committed Apr 4, 2024
1 parent f521c30 commit 2208012
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ updates:
labels:
- type/dependencies
- go
commit-message:
prefix: chore(deps)

- package-ecosystem: "npm"
directory: "/ui"
Expand All @@ -31,6 +33,9 @@ updates:
labels:
- type/dependencies
- javascript
commit-message:
prefix: chore(deps)
prefix-development: chore(deps-dev)

# build / CI dependencies
- package-ecosystem: "pip"
Expand All @@ -43,6 +48,8 @@ updates:
labels:
- type/dependencies
- python
commit-message:
prefix: chore(deps)

- package-ecosystem: "github-actions"
directory: "/"
Expand All @@ -58,3 +65,5 @@ updates:
labels:
- type/dependencies
- github_actions
commit-message:
prefix: chore(deps)

0 comments on commit 2208012

Please sign in to comment.