Add GitHub Actions automations

- Security scanning (CodeQL, dependency review, secrets)
- Railway auto-deploy on push to main
- Release automation with Docker image publishing
- Health check monitoring
- PR labeler and Dependabot

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Alexa Louise
2025-11-30 10:25:28 -06:00
parent afb9f621a1
commit 7f3c7db537
5 changed files with 329 additions and 0 deletions

56
.github/labeler.yml vendored Normal file
View File

@@ -0,0 +1,56 @@
# Label configuration for PR Labeler action
agents:
- changed-files:
- any-glob-to-any-file: 'agents/**/*'
cognition:
- changed-files:
- any-glob-to-any-file: 'cognition/**/*'
capabilities:
- changed-files:
- any-glob-to-any-file: 'capabilities/**/*'
guardrails:
- changed-files:
- any-glob-to-any-file: 'guardrails/**/*'
documentation:
- changed-files:
- any-glob-to-any-file:
- 'docs/**/*'
- '*.md'
- 'README*'
ci/cd:
- changed-files:
- any-glob-to-any-file:
- '.github/**/*'
- 'Dockerfile'
- 'docker-compose*.yml'
dependencies:
- changed-files:
- any-glob-to-any-file:
- 'package.json'
- 'package-lock.json'
- 'pnpm-lock.yaml'
- 'yarn.lock'
config:
- changed-files:
- any-glob-to-any-file:
- '*.config.*'
- '*.json'
- '*.yaml'
- '*.yml'
- '*.toml'
tests:
- changed-files:
- any-glob-to-any-file:
- '**/*.test.*'
- '**/*.spec.*'
- '__tests__/**/*'
- 'test/**/*'