From 0d4cf7820d177b03fb0fe16e91310643fa6081cf Mon Sep 17 00:00:00 2001 From: Erik Jaegervall <30996601+erikbosch@users.noreply.github.com> Date: Wed, 25 Oct 2023 13:28:40 +0200 Subject: [PATCH] Add three new repos (#8) No branch protection from start, will be added later migration is finished and repo content is stable kuksa-common Intended to contain kuksa data needed by multiple kuksa repositories. Initial ambition is to copy https://github.com/eclipse/kuksa.val/tree/master/data/vss-core https://github.com/eclipse/kuksa.val/tree/master/jwt https://github.com/eclipse/kuksa.val/tree/master/kuksa_certificates kuksa-python-sdk Intended to contain the KUKSA python client & sdk, currently stored in https://github.com/eclipse/kuksa.val/tree/master/kuksa-client kuksa-android-companion Intended to contain a new example/template app showing how you can access Kuksa Databroker and use VSS signals from an Android App --- otterdog/eclipse-kuksa.jsonnet | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/otterdog/eclipse-kuksa.jsonnet b/otterdog/eclipse-kuksa.jsonnet index 55671bb..a31d1b5 100644 --- a/otterdog/eclipse-kuksa.jsonnet +++ b/otterdog/eclipse-kuksa.jsonnet @@ -120,5 +120,26 @@ orgs.newOrg('eclipse-kuksa') { }, ], }, + orgs.newRepo('kuksa-common') { + allow_merge_commit: true, + allow_update_branch: false, + delete_branch_on_merge: false, + dependabot_security_updates_enabled: true, + web_commit_signoff_required: false, + }, + orgs.newRepo('kuksa-python-sdk') { + allow_merge_commit: true, + allow_update_branch: false, + delete_branch_on_merge: false, + dependabot_security_updates_enabled: true, + web_commit_signoff_required: false, + }, + orgs.newRepo('kuksa-android-companion') { + allow_merge_commit: true, + allow_update_branch: false, + delete_branch_on_merge: false, + dependabot_security_updates_enabled: true, + web_commit_signoff_required: false, + }, ], }