From 3cc2a57a8c5182e0bf14593cc4095c71f447a8f2 Mon Sep 17 00:00:00 2001 From: Stewart X Addison Date: Fri, 8 Dec 2023 17:11:54 +0000 Subject: [PATCH] Create jdk22 and openjdk23-binaries repositories now upstream has forked Signed-off-by: Stewart X Addison --- otterdog/adoptium.jsonnet | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/otterdog/adoptium.jsonnet b/otterdog/adoptium.jsonnet index f1eab3d..7d0ec33 100644 --- a/otterdog/adoptium.jsonnet +++ b/otterdog/adoptium.jsonnet @@ -655,6 +655,23 @@ orgs.newOrg('adoptium') { orgs.newBranchProtectionRule('master'), ], }, + orgs.newRepo('jdk22') { + allow_update_branch: false, + default_branch: "master", + dependabot_security_updates_enabled: true, + secret_scanning: "disabled", + secret_scanning_push_protection: "disabled", + web_commit_signoff_required: false, + }, + orgs.newRepo('temurin23-binaries') { + allow_merge_commit: true, + allow_update_branch: false, + delete_branch_on_merge: false, + dependabot_security_updates_enabled: true, + description: "Temurin 22 binaries", + has_issues: false, + web_commit_signoff_required: false, + }, newMirrorRepo('jdk') { description: "This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.", },