-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add automatika_robotics release team and repositories. (#679)
- Loading branch information
1 parent
1bac220
commit c43dfbc
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
locals { | ||
automatika_robotics_team = [ | ||
"aleph-ra", | ||
"mkabtoul", | ||
] | ||
automatika_robotics_repositories = [ | ||
"automatika_ros_sugar-release", | ||
] | ||
} | ||
|
||
module "automatika_robotics_team" { | ||
source = "./modules/release_team" | ||
team_name = "automatika_robotics" | ||
members = local.automatika_robotics_team | ||
repositories = local.automatika_robotics_repositories | ||
depends_on = [github_membership.members, github_repository.repositories] | ||
} |