From 542e8348b4cb97bddc19406da18f45e5d224fc2d Mon Sep 17 00:00:00 2001 From: eclipse-uprotocol-bot <143088832+eclipse-uprotocol-bot@users.noreply.github.com> Date: Thu, 7 Sep 2023 18:01:54 +0200 Subject: [PATCH] Re-import after adding support for workflow settings. --- otterdog/eclipse-uprotocol.jsonnet | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/otterdog/eclipse-uprotocol.jsonnet b/otterdog/eclipse-uprotocol.jsonnet index 1f1c5c8..936ecaf 100644 --- a/otterdog/eclipse-uprotocol.jsonnet +++ b/otterdog/eclipse-uprotocol.jsonnet @@ -12,6 +12,9 @@ orgs.newOrg('eclipse-uprotocol') { readers_can_create_discussions: true, two_factor_requirement: false, web_commit_signoff_required: false, + workflows+: { + actions_can_approve_pull_request_reviews: false, + }, }, _repositories+:: [ orgs.newRepo('.github') { @@ -43,18 +46,17 @@ orgs.newOrg('eclipse-uprotocol') { secret_scanning_push_protection: "disabled", web_commit_signoff_required: false, }, - orgs.newRepo('uprotocol-spec') { + orgs.newRepo('uprotocol-sdk-rust') { allow_update_branch: false, - description: "uProtocol Specifications", + description: "uProtocol Rust SDK", secret_scanning_push_protection: "disabled", web_commit_signoff_required: false, }, - orgs.newRepo('uprotocol-sdk-rust') { + orgs.newRepo('uprotocol-spec') { allow_update_branch: false, - description: "uProtocol Rust SDK", + description: "uProtocol Specifications", secret_scanning_push_protection: "disabled", web_commit_signoff_required: false, }, - ], }