From 2ce3bc50e590befdacf56b7273d524995d067678 Mon Sep 17 00:00:00 2001 From: Greg Medding Date: Wed, 29 May 2024 04:02:35 -0700 Subject: [PATCH] Adding new repo for C++ conan recipes (#52) We have reached a reasonable level of agreement around keeping conan recipes in their own repo. The current repo is: https://github.com/gregmedd/up-conan-recipes --- otterdog/eclipse-uprotocol.jsonnet | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/otterdog/eclipse-uprotocol.jsonnet b/otterdog/eclipse-uprotocol.jsonnet index 114411f..2765a59 100644 --- a/otterdog/eclipse-uprotocol.jsonnet +++ b/otterdog/eclipse-uprotocol.jsonnet @@ -454,5 +454,26 @@ orgs.newOrg('eclipse-uprotocol') { ], web_commit_signoff_required: false, }, + + orgs.newRepo('up-conan-recipes') { + allow_merge_commit: true, + allow_update_branch: false, + delete_branch_on_merge: false, + description: "Conan recipes for uProtocol C++ libraries", + topics+: [ + "conan", + "cpp", + "uprotocol" + ], + web_commit_signoff_required: false, + branch_protection_rules: [ + orgs.newBranchProtectionRule('main') { + required_approving_review_count: 0, + required_status_checks+: [ + "CI status checks" + ], + }, + ], + }, ], }