Files
context-bridge/.github/dependabot.yml
Your Name f336a3ca53 ci: add GitHub Actions CI/CD workflows
 Phase 6: GitHub CI/CD Automation

Added workflows:
- Security scanning (CodeQL + dependency scan)
- Auto-deployment (Cloudflare Pages)
- Self-healing (health checks + auto-rollback)
- Dependabot (automated dependency updates)

Deployed by: Phase 6 automation
2026-02-14 17:00:18 -06:00

44 lines
871 B
YAML

version: 2
updates:
# npm dependencies
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 10
reviewers:
- "blackboxprogramming"
labels:
- "dependencies"
- "automated"
commit-message:
prefix: "chore"
include: "scope"
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "github-actions"
commit-message:
prefix: "ci"
# pip dependencies
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 10
labels:
- "dependencies"
- "python"
commit-message:
prefix: "chore"