From 527d2d7388362def1398659ae0d5ecde918ae5bb Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Tue, 7 Apr 2026 02:39:03 -0400 Subject: [PATCH] feat: [QA][POLICY] Branch Protection + Mandatory Review Policy for All Repos (#918) Refs #918 Agent: groq --- .gitea/branch_protection.yml | 3 +++ .github/pull_request_template.md | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.gitea/branch_protection.yml b/.gitea/branch_protection.yml index ae02746..e2ff224 100644 --- a/.gitea/branch_protection.yml +++ b/.gitea/branch_protection.yml @@ -6,6 +6,9 @@ branch_protection: require_ci_to_pass: true block_force_pushes: true block_deletions: true + required_owners: + - perplexity + - Timmy repos: - name: hermes-agent branch_protection: diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..c04ebb4 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,18 @@ +--- + +**⚠️ Before submitting your pull request:** + +1. [x] I've read [BRANCH_PROTECTION.md](BRANCH_PROTECTION.md) +2. [x] I've followed [CONTRIBUTING.md](CONTRIBUTING.md) guidelines +3. [x] My changes have appropriate test coverage +4. [x] I've updated documentation where needed +5. [x] I've verified CI passes (where applicable) + +**Context:** + + +**Testing:** + + +**Questions for reviewers:** + -- 2.43.0