From 9136ca0619747fadeb2d8b72049f1b1cd38c6652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotrek=20=C5=BBygie=C5=82o?= <11896137+pzygielo@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:18:26 +0200 Subject: [PATCH] Enable branch protection for OpenMQ releases (#8) --- otterdog/eclipse-ee4j.jsonnet | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/otterdog/eclipse-ee4j.jsonnet b/otterdog/eclipse-ee4j.jsonnet index ef41f07..719f412 100644 --- a/otterdog/eclipse-ee4j.jsonnet +++ b/otterdog/eclipse-ee4j.jsonnet @@ -1997,6 +1997,30 @@ orgs.newOrg('eclipse-ee4j') { requires_status_checks: false, requires_strict_status_checks: true, }, + orgs.newBranchProtectionRule('6.5.x') { + required_approving_review_count: null, + requires_pull_request: false, + requires_status_checks: false, + requires_strict_status_checks: true, + }, + orgs.newBranchProtectionRule('6.4.x') { + required_approving_review_count: null, + requires_pull_request: false, + requires_status_checks: false, + requires_strict_status_checks: true, + }, + orgs.newBranchProtectionRule('6.3.x') { + required_approving_review_count: null, + requires_pull_request: false, + requires_status_checks: false, + requires_strict_status_checks: true, + }, + orgs.newBranchProtectionRule('6.2.x') { + required_approving_review_count: null, + requires_pull_request: false, + requires_status_checks: false, + requires_strict_status_checks: true, + }, orgs.newBranchProtectionRule('containers') { required_approving_review_count: null, requires_pull_request: false,