mirror of
https://github.com/compute-blade-community/compute-blade-agent.git
synced 2026-04-21 17:45:43 +02:00
* chore: update repository references from uptime-industries to compute-blade-community chore: update repository references from uptime-industries to compute-blade-community for consistency and clarity across all files fix: update links in CHANGELOG.md and README.md to point to the new repository location for accurate documentation fix: update Dockerfile and systemd service file to reflect the new repository URL for proper source tracking refactor: change import paths in Go files to use the new repository name for correct package referencing * chore: Add CODEOWNERS * feat: add auto-labeling --------- Co-authored-by: Cedric Kienzler <cedric@specht-labs.de>
71 lines
1.5 KiB
YAML
71 lines
1.5 KiB
YAML
# API-related files
|
|
api:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- 'api/**'
|
|
- 'internal/api/**'
|
|
- 'pkg/certificate/**'
|
|
- 'buf.*'
|
|
|
|
# CLI-related files
|
|
cli:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- 'api/**'
|
|
- 'cmd/bladectl/**'
|
|
|
|
# Agent
|
|
agent:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- 'api/**'
|
|
- 'cmd/agent/**'
|
|
- 'internal/agent/**'
|
|
- 'pkg/agent/**'
|
|
- 'pkg/events/**'
|
|
|
|
# Firmware-related files
|
|
firmware:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- 'cmd/fanunit/**'
|
|
- 'pkg/smartfanunit/**'
|
|
|
|
# Hardware-specific packages
|
|
hardware:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- 'pkg/fancontroller/**'
|
|
- 'pkg/hal/**'
|
|
- 'pkg/ledengine/**'
|
|
|
|
# Utilities
|
|
util:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- 'pkg/util/**'
|
|
- 'pkg/log/**'
|
|
|
|
# Documentation (Markdown files or docs folders — optional here, kept for completeness)
|
|
documentation:
|
|
- changed-files:
|
|
- any-glob-to-any-file: '**/*.md'
|
|
|
|
# Build system files
|
|
build:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- '.github/**'
|
|
- 'Makefile'
|
|
|
|
# Add 'enhancement' label to any PR where the head branch name starts with `feature`
|
|
enhancement:
|
|
- head-branch:
|
|
- '^feature'
|
|
|
|
# Add 'bug' label to any PR where the head branch name starts with `feature`
|
|
bug:
|
|
- head-branch:
|
|
- '^bug'
|
|
- '^fix'
|