Skip to content

Commit

Permalink
Feat Mantainer dependency (#6)
Browse files Browse the repository at this point in the history
- [+] chore: add dependabot configuration file for automated dependency updates
  • Loading branch information
H0llyW00dzZ authored May 23, 2024
1 parent 91d8d5f commit 5ca1444
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Basic dependabot.yml file for a Go project using Go modules

version: 2
updates:
# Maintain dependencies for Go modules
- package-ecosystem: "gomod" # for Go modules
directory: "/" # Location of the go.mod file
schedule:
interval: "daily" # How often to check for updates

# Optional: Open pull requests only for the main branch
target-branch: "master"

# Optional: Limit the number of open pull requests Dependabot can have at any one time
# open-pull-requests-limit: 5

# Optional: Configure commit message options
# commit-message:
# prefix: "chore"
# include: "scope"

0 comments on commit 5ca1444

Please sign in to comment.