mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
24 lines
No EOL
603 B
YAML
24 lines
No EOL
603 B
YAML
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
version: 2
|
|
updates:
|
|
|
|
# Maintain dependencies for GitHub Actions
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|
|
target-branch: "develop"
|
|
|
|
# Maintain dependencies for npm
|
|
- package-ecosystem: "npm"
|
|
directory: "/gui"
|
|
schedule:
|
|
interval: "daily"
|
|
target-branch: "develop"
|
|
|
|
# Maintain dependencies for pip
|
|
- package-ecosystem: "pip"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|
|
target-branch: "develop" |