mirror of
https://github.com/microsoft/generative-ai-for-beginners.git
synced 2026-03-25 20:25:01 +00:00
19 lines
518 B
YAML
19 lines
518 B
YAML
version: 2
|
|
updates:
|
|
# For Python dependencies
|
|
- package-ecosystem: "pip"
|
|
directory: "/" # Location of the requirements.txt file
|
|
schedule:
|
|
interval: "weekly"
|
|
|
|
# For Node.js dependencies
|
|
- package-ecosystem: "npm"
|
|
directory: "/" # Location of the package.json file
|
|
schedule:
|
|
interval: "weekly"
|
|
|
|
# Optional: For GitHub Actions dependencies
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/" # Location of the .github/workflows directory
|
|
schedule:
|
|
interval: "weekly" |