From f8cae37ef112062c965d2ff1c72f6fe4544eb7a7 Mon Sep 17 00:00:00 2001 From: Cristiano Aguzzi Date: Sat, 24 Feb 2024 11:27:05 +0100 Subject: [PATCH 1/2] chore(otterdog): simplify node-wot protection rules Signed-off-by: Cristiano Aguzzi --- otterdog/eclipse-thingweb.jsonnet | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/otterdog/eclipse-thingweb.jsonnet b/otterdog/eclipse-thingweb.jsonnet index 3542dea..c3c3d10 100644 --- a/otterdog/eclipse-thingweb.jsonnet +++ b/otterdog/eclipse-thingweb.jsonnet @@ -90,7 +90,11 @@ orgs.newOrg('eclipse-thingweb') { ], branch_protection_rules : [ orgs.newBranchProtectionRule('master') { - required_approving_review_count: 2 + required_approving_review_count: 1, + bypass_actors+: [ + "@relu91", + "@danielpeintner" + ], } ], web_commit_signoff_required: false, From afff68dd316d0d5191cedb90dd7c30873503865f Mon Sep 17 00:00:00 2001 From: Thomas Neidhart Date: Sat, 24 Feb 2024 19:41:21 +0100 Subject: [PATCH 2/2] Update eclipse-thingweb.jsonnet Signed-off-by: Thomas Neidhart --- otterdog/eclipse-thingweb.jsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otterdog/eclipse-thingweb.jsonnet b/otterdog/eclipse-thingweb.jsonnet index c3c3d10..76478f6 100644 --- a/otterdog/eclipse-thingweb.jsonnet +++ b/otterdog/eclipse-thingweb.jsonnet @@ -91,7 +91,7 @@ orgs.newOrg('eclipse-thingweb') { branch_protection_rules : [ orgs.newBranchProtectionRule('master') { required_approving_review_count: 1, - bypass_actors+: [ + bypass_pull_request_allowances+: [ "@relu91", "@danielpeintner" ],