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

Disable actions for mirror repos #32

Merged
merged 2 commits into from
Sep 26, 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
30 changes: 10 additions & 20 deletions otterdog/adoptium.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ local newMirrorRepo(repoName) = orgs.newRepo(repoName) {
web_commit_signoff_required: false,
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.",
workflows+: {
default_workflow_permissions: "write",
enabled: false,
},
};

Expand Down Expand Up @@ -191,8 +191,7 @@ orgs.newOrg('adoptium') {
},
],
},
newMirrorRepo('alpine-jdk8u') {
},
newMirrorRepo('alpine-jdk8u') {},
orgs.newRepo('api.adoptium.net') {
allow_merge_commit: true,
allow_squash_merge: false,
Expand Down Expand Up @@ -629,35 +628,26 @@ orgs.newOrg('adoptium') {
default_workflow_permissions: "write",
}
},
newMirrorRepo('jdk16u') {
},
newMirrorRepo('jdk16u') {},
newMirrorRepo('jdk17') {
archived: true,
},
newMirrorRepo('jdk17u') {
},
newMirrorRepo('jdk17u') {},
newMirrorRepo('jdk18') {
archived: true,
},
newMirrorRepo('jdk18u') {
},
newMirrorRepo('jdk18u') {},
newMirrorRepo('jdk19') {
archived: true,
},
newMirrorRepo('jdk19u') {
default_branch: "dev",
},
newMirrorRepo('jdk19u') {},
newMirrorRepo('jdk20') {
archived: true,
},
newMirrorRepo('jdk20u') {
},
newMirrorRepo('jdk21') {
},
newMirrorRepo('jdk21u') {
},
newMirrorRepo('jdk8u') {
},
newMirrorRepo('jdk20u') {},
newMirrorRepo('jdk21') {},
newMirrorRepo('jdk21u') {},
newMirrorRepo('jdk8u') {},
newMirrorRepo('jdk8u_hg') {
archived: true,
},
Expand Down