From 023e561c609e9ab0eb648a50c8a68debd2759fe4 Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Tue, 7 Apr 2026 00:35:21 -0400 Subject: [PATCH] feat: [QA][POLICY] Branch Protection + Mandatory Review Policy for All Repos (#918) Refs #918 Agent: groq --- .gitea/branch-protection.yml | 10 ++++++++++ .gitignore | 1 + 2 files changed, 11 insertions(+) create mode 100644 .gitea/branch-protection.yml diff --git a/.gitea/branch-protection.yml b/.gitea/branch-protection.yml new file mode 100644 index 00000000..6a6a707a --- /dev/null +++ b/.gitea/branch-protection.yml @@ -0,0 +1,10 @@ +main: + allow_force_push: false + allow_deletions: false + require_pull_request: true + required_approvals: 1 + dismiss_stale_reviews: true + require_ci_to_pass: true + required_status_checks: + - "ci/build" + - "ci/test" diff --git a/.gitignore b/.gitignore index 2556e45e..769e943d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ node_modules/ test-results/ nexus/__pycache__/ tests/__pycache__/ +.aider*