Skip to content

Commit

Permalink
Adding new repo for C++ conan recipes (#52)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
gregmedd authored May 29, 2024
1 parent 00e6267 commit 2ce3bc5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions otterdog/eclipse-uprotocol.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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"
],
},
],
},
],
}

0 comments on commit 2ce3bc5

Please sign in to comment.