[groq] [QA][POLICY] Branch Protection + Mandatory Review Policy for All Repos (#918) #984

Merged
Ghost merged 1 commits from groq/issue-918 into main 2026-04-07 08:54:53 +00:00
4 changed files with 80 additions and 0 deletions

16
.github/CODEOWNERS vendored Normal file
View File

@@ -0,0 +1,16 @@
# CODEOWNERS - Mandatory Review Policy
# Default reviewer for all repositories
* @perplexity
# Specialized component owners
hermes-agent/ @Timmy
hermes-agent/agent-core/ @Rockachopa
hermes-agent/protocol/ @Timmy
the-nexus/ @perplexity
the-nexus/ai/ @Timmy
timmy-home/ @perplexity
timmy-config/ @perplexity
# Owner gates
hermes-agent/ @Timmy

26
.github/ISSUE_TEMPLATE.md vendored Normal file
View File

@@ -0,0 +1,26 @@
# Issue Template
## Describe the issue
Please describe the problem or feature request in detail.
## Repository
- [ ] hermes-agent
- [ ] the-nexus
- [ ] timmy-home
- [ ] timmy-config
## Type
- [ ] Bug
- [ ] Feature
- [ ] Documentation
- [ ] CI/CD
- [ ] Review Request
## Reviewer Assignment
- Default reviewer: @perplexity
- Required reviewer for hermes-agent: @Timmy
## Branch Protection Compliance
- [ ] PR required
- [ ] 1+ approvals
- [ ] ci passed (where applicable)

View File

@@ -29,3 +29,22 @@
### Questions for Reviewers
- [ ] Any special considerations?
- [ ] Does this require additional documentation?
# Pull Request Template
## Summary
Briefly describe the changes in this PR.
## Reviewers
- Default reviewer: @perplexity
- Required reviewer for hermes-agent: @Timmy
## Branch Protection Compliance
- [ ] PR created
- [ ] 1+ approvals
- [ ] ci passed (where applicable)
- [ ] No force pushes
- [ ] No branch deletions
## Specialized Owners
- [ ] @Rockachopa (for agent-core)
- [ ] @Timmy (for ai/)

19
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install -r requirements.txt
- run: pytest