generated from EclipseFdn/.eclipsefdn-template
-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
remove branch protection from deprecated branches #35
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
marketplace and marketplace-production have been deprecated and will be deleted. Signed-off-by: George Adams <[email protected]>
Diff for be19186:Printing local diff for configuration at '/home/runner/work/.eclipsefdn/.eclipsefdn/otterdog-configs/otterdog.json'
Actions are indicated with the following symbols:
+ create
! modify
! forced update
- delete
Organization adoptium[id=adoptium]
there have been 4 validation infos, enable verbose output with '-v' to to display them.
- remove branch_protection_rule[pattern="marketplace", repository="api.adoptium.net"] {
- allows_deletions = false
- allows_force_pushes = false
- blocks_creations = false
- bypass_force_push_allowances = []
- bypass_pull_request_allowances = []
- dismisses_stale_reviews = false
- is_admin_enforced = false
- lock_allows_fetch_and_merge = false
- lock_branch = false
- pattern = "marketplace"
- require_last_push_approval = false
- required_approving_review_count = "1"
- required_status_checks = [
- "eclipse-eca-validation:eclipsefdn/eca"
- "build"
- ],
- requires_code_owner_reviews = false
- requires_commit_signatures = false
- requires_conversation_resolution = false
- requires_deployments = false
- requires_linear_history = false
- requires_pull_request = true
- requires_status_checks = true
- requires_strict_status_checks = false
- restricts_pushes = false
- restricts_review_dismissals = false
- }
- remove branch_protection_rule[pattern="marketplace-production", repository="api.adoptium.net"] {
- allows_deletions = false
- allows_force_pushes = false
- blocks_creations = false
- bypass_force_push_allowances = []
- bypass_pull_request_allowances = []
- dismisses_stale_reviews = false
- is_admin_enforced = false
- lock_allows_fetch_and_merge = false
- lock_branch = false
- pattern = "marketplace-production"
- require_last_push_approval = false
- required_approving_review_count = "1"
- required_status_checks = [
- "eclipse-eca-validation:eclipsefdn/eca"
- "build"
- ],
- requires_code_owner_reviews = false
- requires_commit_signatures = false
- requires_conversation_resolution = false
- requires_deployments = false
- requires_linear_history = false
- requires_pull_request = true
- requires_status_checks = true
- requires_strict_status_checks = false
- restricts_pushes = false
- restricts_review_dismissals = false
- }
Plan: 0 to add, 0 to change, 2 to delete. Showing diff to a canonical version of the configuration at '/home/runner/work/.eclipsefdn/.eclipsefdn/otterdog-configs/otterdog.json'
Organization adoptium[id=adoptium]
--- original
+++ canonical
@@ -1,7 +1,55 @@
local orgs = import 'vendor/otterdog-defaults/otterdog-defaults.libsonnet';
+local newMirrorRepo(repoName) = orgs.newRepo(repoName) {
+
+ allow_merge_commit: true
+ allow_update_branch: false
+ auto_init: false
+ default_branch: "master"
+ delete_branch_on_merge: false
+ dependabot_alerts_enabled: 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."
+ has_issues: false
+ has_projects: false
+ has_wiki: false
+ homepage: "https://adoptium.net"
+ secret_scanning: "disabled"
+ secret_scanning_push_protection: "disabled"
+ web_commit_signoff_required: false
+ workflows+: {
+ enabled: false
+ }
orgs.newOrg('adoptium') {
_repositories+:: [
+ newMirrorRepo('alpine-jdk8u') {}
+ 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."
+ }
+ newMirrorRepo('jdk11u') {
+ }
+ newMirrorRepo('jdk16u') {}
+ newMirrorRepo('jdk17') {
+ archived: true
+ }
+ newMirrorRepo('jdk17u') {}
+ newMirrorRepo('jdk18') {
+ archived: true
+ }
+ newMirrorRepo('jdk18u') {}
+ newMirrorRepo('jdk19') {
+ archived: true
+ }
+ newMirrorRepo('jdk19u') {}
+ newMirrorRepo('jdk20') {
+ archived: true
+ }
+ newMirrorRepo('jdk20u') {}
+ newMirrorRepo('jdk21') {}
+ newMirrorRepo('jdk21u') {}
+ newMirrorRepo('jdk8u') {}
+ newMirrorRepo('jdk8u_hg') {
+ archived: true
+ }
orgs.newRepo('.github') {
allow_auto_merge: true
allow_update_branch: false
@@ -68,6 +116,8 @@
orgs.newRepo('aarch32-jdk8u_hg') {
archived: true
default_branch: "master"
+ description: "Mirror of the Mercurial Forest for the Linux Aarch32 port from"
+ homepage: "https://hg.openjdk.java.net/aarch32-port/jdk8u"
web_commit_signoff_required: false
workflows+: {
default_workflow_permissions: "write"
@@ -127,24 +177,6 @@
default_workflow_permissions: "write"
}
}
- orgs.newRepo('alpine-jdk8u') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
orgs.newRepo('api.adoptium.net') {
allow_merge_commit: true
allow_squash_merge: false
@@ -277,6 +309,8 @@
]
}
]
+ description: "The official Adoptium Blog"
+ homepage: "https://blog.adoptium.net"
topics+: [
"adoptium"
"blog"
@@ -419,6 +453,8 @@
}
orgs.newRepo('documentation') {
archived: true
+ description: "The new documentation for adoptium.net will be initially created in this repo"
+ homepage: ""
topics+: [
"documentation"
"hacktoberfest"
@@ -549,42 +585,6 @@
default_workflow_permissions: "write"
}
}
- orgs.newRepo('jdk') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk11u') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
orgs.newRepo('jdk11u-fast-startup-incubator') {
allow_merge_commit: true
allow_update_branch: false
@@ -596,190 +596,6 @@
default_workflow_permissions: "write"
}
}
- orgs.newRepo('jdk16u') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk17') {
- archived: true
- default_branch: "master"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk17u') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk18') {
- archived: true
- default_branch: "master"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk18u') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk19') {
- archived: true
- default_branch: "master"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk19u') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk20') {
- archived: true
- default_branch: "master"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk20u') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk21') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk21u') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk8u') {
- allow_merge_commit: true
- allow_update_branch: false
- default_branch: "master"
- delete_branch_on_merge: false
- dependabot_alerts_enabled: 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."
- has_issues: false
- has_projects: false
- has_wiki: false
- homepage: "https://adoptium.net"
- secret_scanning: "disabled"
- secret_scanning_push_protection: "disabled"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
- orgs.newRepo('jdk8u_hg') {
- archived: true
- default_branch: "master"
- web_commit_signoff_required: false
- workflows+: {
- enabled: false
- }
- }
orgs.newRepo('jenkins-helper') {
allow_update_branch: false
branch_protection_rules: [
@@ -930,6 +746,8 @@
requires_pull_request: false
}
]
+ description: "Development of the website has moved to https://github.com/adoptium/website-v2"
+ homepage: "https://github.com/adoptium/website-v2"
web_commit_signoff_required: false
workflows+: {
default_workflow_permissions: "write"
@@ -1184,3 +1002,4 @@
}
]
}
+}; |
netomi
approved these changes
Oct 24, 2023
branch protection rules have been deleted. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
marketplace and marketplace-production have been deprecated and will be deleted.