Skip to content

Commit

Permalink
chore: Update dependabot to include reviewer (myself) (#30)
Browse files Browse the repository at this point in the history
Updated the **Dependabot** configuration to automatically include myself as the reviewer for all generated PRs.
  • Loading branch information
Fingertips18 authored Nov 23, 2024
1 parent 25e2119 commit 1450d03
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,34 @@
version: 2
updates:
# Update Go dependencies for the root directory
# Update Go dependencies in the root directory
- package-ecosystem: "gomod"
directory: /
schedule:
interval: "daily" # Check for updates every day
commit-message:
prefix: "chore" # Use 'chore' prefix for the commit message
include: "scope" # Include the scope (dependency name) in the commit message
reviewers:
- Fingertips18

# Update npm dependencies for the client directory
# Update npm dependencies in the client directory
- package-ecosystem: "npm"
directory: /client
schedule:
interval: "daily" # Check for updates every day
interval: "daily"
commit-message:
prefix: "chore" # Use 'chore' prefix for the commit message
include: "scope" # Include the scope (dependency name) in the commit message
prefix: "chore"
include: "scope"
reviewers:
- Fingertips18

# Update GitHub Actions dependencies for the root directory
# Update GitHub Actions dependencies in the root directory
- package-ecosystem: "github-actions"
directory: /
schedule:
interval: "weekly" # Check for updates once a week
interval: "weekly"
commit-message:
prefix: "chore" # Use 'chore' prefix for the commit message
include: "scope" # Include the scope (dependency name) in the commit message
prefix: "chore"
include: "scope"
reviewers:
- Fingertips18

0 comments on commit 1450d03

Please sign in to comment.