mirror of
https://github.com/blackboxprogramming/context-bridge.git
synced 2026-03-17 03:57:14 -05:00
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
This commit is contained in:
43
.github/dependabot.yml
vendored
Normal file
43
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
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"
|
||||
Reference in New Issue
Block a user