From 6b1c343df92ab1f998303e9778bae268de797cb9 Mon Sep 17 00:00:00 2001 From: eclipse-thingweb-bot <140179293+eclipse-thingweb-bot@users.noreply.github.com> Date: Fri, 24 Nov 2023 11:06:35 +0100 Subject: [PATCH] Update to reflect external changes. --- otterdog/eclipse-thingweb.jsonnet | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/otterdog/eclipse-thingweb.jsonnet b/otterdog/eclipse-thingweb.jsonnet index 9b59495..a08fece 100644 --- a/otterdog/eclipse-thingweb.jsonnet +++ b/otterdog/eclipse-thingweb.jsonnet @@ -35,6 +35,45 @@ orgs.newOrg('eclipse-thingweb') { default_workflow_permissions: "write", }, }, + orgs.newRepo('dart_wot') { + allow_auto_merge: true, + allow_merge_commit: true, + allow_update_branch: false, + description: "A W3C Web of Things implementation written in Dart.", + homepage: "", + secret_scanning: "disabled", + secret_scanning_push_protection: "disabled", + topics+: [ + "coap", + "dart", + "flutter", + "internetofthings", + "iot", + "webofthings", + "wot" + ], + web_commit_signoff_required: false, + workflows+: { + default_workflow_permissions: "write", + }, + secrets: [ + orgs.newRepoSecret('CODECOV_TOKEN') { + value: "********", + }, + ], + branch_protection_rules: [ + orgs.newBranchProtectionRule('main') { + required_approving_review_count: null, + required_status_checks+: [ + "build (macos-latest)", + "build (ubuntu-latest)", + "build (windows-latest)" + ], + requires_pull_request: false, + requires_strict_status_checks: true, + }, + ], + }, orgs.newRepo('node-wot') { allow_merge_commit: true, allow_update_branch: false,