From 7e25e5c3fa5f4a003b0b4760dc7f1b8a2c9f182e Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Tue, 11 Aug 2026 21:23:21 +1000 Subject: [PATCH] repository: require CI status check on jellyfin-ha-src main Why: the jellyfin-ha-src main branch is protected but merges are not gated on CI, so a pull request can be merged while its Woodpecker build is red. How: add the ci/woodpecker/pr/ci context to the main branch protection rule. The gitea provider computes enable_status_check from a non-empty context list, so this turns required status checks on and blocks merge until that exact check passes. --- config/git.unkin.net/unkin/repository/jellyfin-ha-src.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/git.unkin.net/unkin/repository/jellyfin-ha-src.yaml b/config/git.unkin.net/unkin/repository/jellyfin-ha-src.yaml index 82af280..7736297 100644 --- a/config/git.unkin.net/unkin/repository/jellyfin-ha-src.yaml +++ b/config/git.unkin.net/unkin/repository/jellyfin-ha-src.yaml @@ -5,5 +5,7 @@ default_delete_branch_after_merge: true branch_protection: - rule_name: "main" enable_push: false + status_check_contexts: + - "ci/woodpecker/pr/ci" approval_whitelist_teams: - "Owners"