Skip to content

Commit

Permalink
Enabling 2-factor and adding springboot project (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Hartley authored Mar 28, 2024
1 parent e29dc55 commit 7c41cde
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions otterdog/eclipse-uprotocol.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ local orgs = import 'vendor/otterdog-defaults/otterdog-defaults.libsonnet';
orgs.newOrg('eclipse-uprotocol') {
settings+: {
dependabot_security_updates_enabled_for_new_repositories: false,
description: "",
description: "Project to enable connecting automotive applications and services anywhere",
name: "Eclipse uProtocol",
readers_can_create_discussions: true,
two_factor_requirement: false,
two_factor_requirement: true,
web_commit_signoff_required: false,
workflows+: {
actions_can_approve_pull_request_reviews: false,
Expand Down Expand Up @@ -427,5 +427,17 @@ orgs.newOrg('eclipse-uprotocol') {
],
web_commit_signoff_required: false,
},

orgs.newRepo('up-client-springboot-java') {
allow_update_branch: false,
description: "Springboot implementation of uProtocol that could be used for development of cloud microservices",
topics+: [
"up-client",
"springboot",
"java",
"uprotocol"
],
web_commit_signoff_required: false,
},
],
}

0 comments on commit 7c41cde

Please sign in to comment.