Skip to content

Commit

Permalink
fix: Add - for dependabot package-ecosystem
Browse files Browse the repository at this point in the history
  • Loading branch information
Fingertips18 committed Nov 16, 2024
1 parent 52d8dd9 commit 489ab96
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
version: 2
updates:
# Update Go dependencies for the root directory
package-ecosystem: "gomod"
- package-ecosystem: "gomod"
directory: /
schedule:
interval: "daily" # Check for updates every day
allow:
- dependency-name: "github.com/Fingertips18/*" # Only allow updates from the specified Go dependencies
commit-message:
prefix: chore # Use 'chore' prefix for the commit message
include: scope # Include the scope (dependency name) in the commit message
prefix: "chore" # Use 'chore' prefix for the commit message
include: "scope" # Include the scope (dependency name) in the commit message

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

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

0 comments on commit 489ab96

Please sign in to comment.