-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
34 lines (30 loc) · 1.53 KB
/
Copy pathCODEOWNERS
File metadata and controls
34 lines (30 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# CODEOWNERS — require maintainer review for sensitive paths.
#
# Any change under .github/ (CI workflows, this file) or to the project's
# core source / packaging files must be reviewed by a code owner before it
# can merge, when branch protection has "Require review from Code Owners"
# enabled.
#
# NOTE on forks: replace `@daniel-pittman` below with the new maintainer's
# GitHub handle. For this rule to actually ENFORCE, that account must be a
# DIRECT collaborator on the repository (or a member of a team with direct
# access). Permissions inherited only through an organization do NOT satisfy
# CODEOWNERS enforcement — GitHub silently treats the owner as invalid and the
# rule does not block.
# Workflow and CI configuration — the most security-sensitive paths.
/.github/ @daniel-pittman
# Core source — the bash CLI script and the parallel Python implementation
# the MCP server uses. Changes to any of these can affect runtime behaviour
# or surface secrets. The bash script and the Python modules are PARALLEL
# implementations of the same Bitbucket REST contract; review of one often
# implies review of the other (see CONTRIBUTING.md for the parity rule).
/bb @daniel-pittman
/bb_api.py @daniel-pittman
/bb_ops.py @daniel-pittman
/git_ops.py @daniel-pittman
/mcp_server.py @daniel-pittman
# Release versioning. A `VERSION` bump corresponds 1:1 with a release tag.
/VERSION @daniel-pittman
# Packaging + agent definition.
/pyproject.toml @daniel-pittman
/agents/ @daniel-pittman