Skip to content

Commit

Permalink
Add release team Dexory, Closes #342
Browse files Browse the repository at this point in the history
  • Loading branch information
nachovizzo committed Oct 16, 2023
1 parent 1bf402a commit 79bf8ef
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions 00-members.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ locals {
local.control_team,
local.cyberbotics_team,
local.cyclonedds_team,
local.dexory_team,
local.diagnostics_team,
local.dolly_team,
local.dynamixel_community_team,
Expand Down
1 change: 1 addition & 0 deletions 00-repositories.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ locals {
local.cyberbotics_repositories,
local.cyclonedds_repositories,
local.diagnostics_repositories,
local.dexory_repositories,
local.dolly_repositories,
local.dynamixel_community_repositories,
local.eclipse_ecal_repositories,
Expand Down
17 changes: 17 additions & 0 deletions dexory.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
locals {
dexory_team = [
"nachovizzo",
]

dexory_repositories = [
"ament_black-release",
]
}

module "dexory" {
source = "./modules/release_team"
team_name = "dexory"
members = local.dexory_team
repositories = local.dexory_repositories
depends_on = [github_membership.members, github_repository.repositories]
}

0 comments on commit 79bf8ef

Please sign in to comment.