1
0
mirror of https://github.com/H0llyW00dzZ/fiber2fa.git synced 2025-02-06 11:02:32 +00:00

Feat Mantainer dependency (#6)

- [+] chore: add dependabot configuration file for automated dependency updates
This commit is contained in:
H0llyW00dzZ 2024-05-23 19:56:03 +07:00 committed by GitHub
parent 91d8d5f1ce
commit 5ca14442eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

20
.github/dependabot.yml vendored Normal file
View File

@ -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"