fix: Change the dependency name for go (#16) #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Dependabot Configuration" | |
version: 2 | |
updates: | |
# Update Go dependencies for the root directory | |
- name: "Update Go Dependencies" | |
package-ecosystem: "go" | |
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 | |
# Update npm dependencies for the client directory | |
- name: "Update NPM Dependencies (Client)" | |
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 | |
# Update GitHub Actions dependencies for the root directory | |
- name: "Update 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 |