Skip to content

Commit

Permalink
initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi authored and eclipse-californium-bot committed Jul 15, 2024
1 parent 3f33e6f commit 949e2a3
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions otterdog/eclipse-californium.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
local orgs = import 'vendor/otterdog-defaults/otterdog-defaults.libsonnet';

orgs.newOrg('eclipse-californium') {
settings+: {
description: "",
name: "Eclipse Californium™",
security_managers+: [
"iot-californium-committers"
],
web_commit_signoff_required: false,
workflows+: {
actions_can_approve_pull_request_reviews: false,
default_workflow_permissions: "write",
},
},
_repositories+:: [
orgs.newRepo('californium') {
allow_merge_commit: true,
allow_update_branch: false,
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
description: "CoAP/DTLS Java Implementation ",
homepage: "https://www.eclipse.org/californium/",
private_vulnerability_reporting_enabled: true,
topics+: [
"coap",
"dtls",
"eclipseiot",
"internet-of-things",
"iot",
"java"
],
web_commit_signoff_required: false,
workflows+: {
default_workflow_permissions: "write",
},
},
orgs.newRepo('californium-website') {
allow_merge_commit: true,
allow_update_branch: false,
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
description: "Californium website source",
private_vulnerability_reporting_enabled: true,
web_commit_signoff_required: false,
workflows+: {
default_workflow_permissions: "write",
},
},
orgs.newRepo('californium.actinium') {
allow_merge_commit: true,
allow_update_branch: false,
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
description: "Californium project",
private_vulnerability_reporting_enabled: true,
web_commit_signoff_required: false,
workflows+: {
default_workflow_permissions: "write",
},
},
orgs.newRepo('californium.tools') {
allow_merge_commit: true,
allow_update_branch: false,
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
description: "Californium project",
gh_pages_build_type: "legacy",
gh_pages_source_branch: "gh-pages",
gh_pages_source_path: "/",
private_vulnerability_reporting_enabled: true,
web_commit_signoff_required: false,
workflows+: {
default_workflow_permissions: "write",
},
},
],
}

0 comments on commit 949e2a3

Please sign in to comment.