fetch_ml/.github/labeler.yml
Jeremie Fraeys e5dcb347d8 feat: add GitHub workflows and development tooling
- Add comprehensive CI/CD workflows for testing and releases
- Include issue and pull request templates
- Add GitHub labeler configuration for automated triage
- Include license check and stale issue management
- Add Windsurf rules for development workflow
- Include database directory structure with gitkeep

Provides complete GitHub automation and development tooling
for streamlined contribution and project management.
2025-12-04 16:56:25 -05:00

82 lines
1 KiB
YAML

# Labeler configuration for automatic PR labeling
# Bug reports
bug:
- "[BUG]"
- "bug:"
- "fixes #"
- "closes #"
# Feature requests
enhancement:
- "[FEATURE]"
- "feat:"
- "feature:"
- "add "
# Documentation
documentation:
- "[DOCS]"
- "docs:"
- "README"
- "documentation"
# Security
security:
- "[SECURITY]"
- "security:"
- "auth"
- "authentication"
- "RBAC"
- "permissions"
# Testing
testing:
- "[TEST]"
- "test:"
- "tests"
- "unit test"
- "integration test"
# CI/CD
ci:
- "[CI]"
- "workflow"
- "github actions"
- "build"
- "deploy"
# Configuration
configuration:
- "[CONFIG]"
- "config"
- "yaml"
- "settings"
# Dependencies
dependencies:
- "[DEPS]"
- "go.mod"
- "dependency"
- "update"
# Performance
performance:
- "[PERF]"
- "performance"
- "optimize"
- "speed"
# Breaking changes
breaking-change:
- "[BREAKING]"
- "breaking"
- "deprecated"
- "remove"
# TUI
tui:
- "[TUI]"
- "cmd/tui"
- "terminal ui"
- "interface"