Skip to content

Commit

Permalink
Add release team and repository for Eclipse ecal. (#317)
Browse files Browse the repository at this point in the history
* feat: add eclipse ecal tf

Signed-off-by: wep21 <[email protected]>

* add wep21 into eclipse ecal team

* Fix lexicographical sort order.

---------

Signed-off-by: wep21 <[email protected]>
Co-authored-by: Steven! Ragnarök <[email protected]>
  • Loading branch information
wep21 and nuclearsandwich committed Aug 26, 2023
1 parent d0aacef commit 1ef9f01
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 @@ -25,6 +25,7 @@ locals {
local.diagnostics_team,
local.dolly_team,
local.dynamixel_community_team,
local.eclipse_ecal_team,
local.eigenpy_team,
local.executive_smach_team,
local.fastcdr_team,
Expand Down
1 change: 1 addition & 0 deletions 00-repositories.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ locals {
local.diagnostics_repositories,
local.dolly_repositories,
local.dynamixel_community_repositories,
local.eclipse_ecal_repositories,
local.eigenpy_repositories,
local.executive_smach_repositories,
local.fastcdr_repositories,
Expand Down
17 changes: 17 additions & 0 deletions eclipse_ecal.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
locals {
eclipse_ecal_team = [
"FlorianReimold",
"wep21",
]
eclipse_ecal_repositories = [
"ecal-release",
]
}

module "eclipse_ecal_team" {
source = "./modules/release_team"
team_name = "eclipse_ecal"
members = local.eclipse_ecal_team
repositories = local.eclipse_ecal_repositories
depends_on = [github_membership.members, github_repository.repositories]
}

0 comments on commit 1ef9f01

Please sign in to comment.