Skip to content

Commit

Permalink
fix(plugin-dependabot): add commit message prefix (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
hongaar authored Jan 12, 2023
1 parent 600926c commit a7e7363
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ updates:
directory: /
schedule:
interval: weekly
commit-message:
prefix: fix(deps)
prefix-development: chore(deps-dev)
include: scope
- package-ecosystem: github-actions
directory: /
schedule:
Expand Down
5 changes: 5 additions & 0 deletions packages/plugins/src/dependabot/dependabot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@ async function install({ directory }: PluginArgs) {
schedule: {
interval: "weekly",
},
"commit-message": {
prefix: "fix(deps)",
"prefix-development": "chore(deps-dev)",
include: "scope",
},
},
],
},
Expand Down

0 comments on commit a7e7363

Please sign in to comment.