-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mobile_catkin_modules_build_development_tools changes (#339)
* Create mobile_catkin_modules_build_development_tools.tf * Update 00-members.tf * Update 00-repositories.tf * Fix username spelling. --------- Co-authored-by: Steven! Ragnarök <[email protected]>
- Loading branch information
1 parent
a76f5f0
commit 0784552
Showing
3 changed files
with
18 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,16 @@ | ||
locals { | ||
mobile_catkin_modules_build_development_tools_team = [ | ||
"RonaldsonBellande", | ||
] | ||
mobile_catkin_modules_build_development_tools_repositories = [ | ||
"mobile_catkin_modules_build_development_tools-release", | ||
] | ||
} | ||
|
||
module "mobile_catkin_modules_build_development_tools_team" { | ||
source = "./modules/release_team" | ||
team_name = "mobile_catkin_modules_build_development_tools" | ||
members = local.mobile_catkin_modules_build_development_tools_team | ||
repositories = local.mobile_catkin_modules_build_development_tools_repositories | ||
depends_on = [github_membership.members, github_repository.repositories] | ||
} |