Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add jdk21u adoptium mirror repo #30

Merged
merged 2 commits into from
Sep 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions otterdog/adoptium.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ orgs.newOrg('adoptium') {
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
dependabot_alerts_enabled: false,
description: "JDK8u mirror. This source code is an unmodified mirror of source code obtained from OpenJDK https://github.com/openjdk/jdk8u. 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",
homepage: "",
web_commit_signoff_required: false,
Expand Down Expand Up @@ -567,6 +567,7 @@ orgs.newOrg('adoptium') {
orgs.newRepo('jdk17') {
archived: true,
default_branch: "master",
dependabot_alerts_enabled: false,
description: "JDK17 mirror. This source code is an unmodified mirror of source code obtained from OpenJDK https://github.com/openjdk/jdk17. 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 of the code that is available at https://www.adoptium.net.",
homepage: "",
web_commit_signoff_required: false,
Expand All @@ -584,6 +585,7 @@ orgs.newOrg('adoptium') {
orgs.newRepo('jdk18') {
archived: true,
default_branch: "master",
dependabot_alerts_enabled: false,
description: "JDK18 mirror. This source code is an unmodified mirror of source code obtained from OpenJDK https://github.com/openjdk/jdk18. 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 of the code that is available at https://adoptium.net.",
web_commit_signoff_required: false,
},
Expand All @@ -599,6 +601,7 @@ orgs.newOrg('adoptium') {
orgs.newRepo('jdk19') {
archived: true,
default_branch: "master",
dependabot_alerts_enabled: false,
description: "jdk19 repository",
secret_scanning: "disabled",
web_commit_signoff_required: false,
Expand All @@ -608,14 +611,15 @@ orgs.newOrg('adoptium') {
allow_update_branch: false,
default_branch: "dev",
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
dependabot_alerts_enabled: false,
secret_scanning: "disabled",
secret_scanning_push_protection: "disabled",
web_commit_signoff_required: false,
},
orgs.newRepo('jdk20') {
archived: true,
default_branch: "master",
dependabot_alerts_enabled: false,
secret_scanning: "disabled",
web_commit_signoff_required: false,
},
Expand All @@ -624,7 +628,7 @@ orgs.newOrg('adoptium') {
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
dependabot_alerts_enabled: false,
secret_scanning: "disabled",
secret_scanning_push_protection: "disabled",
web_commit_signoff_required: false,
Expand All @@ -634,7 +638,17 @@ orgs.newOrg('adoptium') {
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
dependabot_alerts_enabled: false,
secret_scanning_push_protection: "disabled",
web_commit_signoff_required: false,
},
orgs.newRepo('jdk21u') {
allow_merge_commit: true,
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
dependabot_alerts_enabled: false,
secret_scanning: "disabled",
secret_scanning_push_protection: "disabled",
web_commit_signoff_required: false,
},
Expand All @@ -653,6 +667,7 @@ orgs.newOrg('adoptium') {
orgs.newRepo('jdk8u_hg') {
archived: true,
default_branch: "master",
dependabot_alerts_enabled: false,
description: "JDK8u mirror from mercurial from",
homepage: "http://hg.openjdk.java.net/jdk8u/jdk8u/",
web_commit_signoff_required: false,
Expand Down