netmaker/.github/dependabot.yml
2021-10-27 22:08:36 -04:00

19 lines
503 B
YAML

# Basic dependabot.yml file with minimum configuration for gomod.
version: 2
updates:
# Enable version updates for netmaker
- package-ecosystem: "gomod"
directory: "/"
# Check for updates every day (weekdays)
schedule:
interval: "weekly"
target-branch: "develop"
# Enable version updates for netclient
- package-ecosystem: "gomod"
directory: "/netclient"
# Check for updates every day (weekdays)
schedule:
interval: "weekly"
target-branch: "develop"