| 1 | # Area labels auto-applied to PRs by .github/workflows/pr-auto-label.yml |
| 2 | # (actions/labeler), based on the changed file paths. Keep the area set in sync |
| 3 | # with issue-auto-label.yml. severity/platform are issue-only — a PR is a change, |
| 4 | # not a bug report — and v1/v2 are handled by pr-version-label.yml. |
| 5 | |
| 6 | agent: |
| 7 | - changed-files: |
| 8 | - any-glob-to-any-file: |
| 9 | - 'internal/agent/**' |
| 10 | - 'internal/control/**' |
| 11 | |
| 12 | mcp: |
| 13 | - changed-files: |
| 14 | - any-glob-to-any-file: |
| 15 | - 'internal/plugin/**' |
| 16 | - 'internal/codegraph/**' |
| 17 | |
| 18 | config: |
| 19 | - changed-files: |
| 20 | - any-glob-to-any-file: |
| 21 | - 'internal/config/**' |
| 22 | - 'internal/boot/**' |
| 23 | |
| 24 | provider: |
| 25 | - changed-files: |
| 26 | - any-glob-to-any-file: |
| 27 | - 'internal/provider/**' |
| 28 | |
| 29 | skills: |
| 30 | - changed-files: |
| 31 | - any-glob-to-any-file: |
| 32 | - 'internal/skill/**' |
| 33 | - 'internal/tool/**' |
| 34 | |
| 35 | tui: |
| 36 | - changed-files: |
| 37 | - any-glob-to-any-file: |
| 38 | - 'internal/cli/**' |
| 39 | |
| 40 | desktop: |
| 41 | - changed-files: |
| 42 | - any-glob-to-any-file: |
| 43 | - 'desktop/**' |
| 44 | |
| 45 | updater: |
| 46 | - changed-files: |
| 47 | - any-glob-to-any-file: |
| 48 | - 'desktop/cmd/sign/**' |
| 49 | - 'desktop/updater*.go' |
| 50 | - 'scripts/desktop-build.sh' |
| 51 | - '.github/workflows/release*.yml' |
| 52 |