Skip to content

Commit 6fe977e

Browse files
committed
We are actively looking for maintainers
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 862f67f commit 6fe977e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

terraform/github/repositories.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,9 @@ locals {
12741274
} : repo_name => merge(repo, {
12751275
description = format("%s [maintainer=%s]",
12761276
repo.description,
1277-
join(", ", [for maintainer in local.github_teams[repo.teams[0]].maintainers : format("@%s", maintainer)])
1277+
length(local.github_teams[repo.teams[0]].maintainers) > 0 ?
1278+
join(", ", [for maintainer in local.github_teams[repo.teams[0]].maintainers : format("@%s", maintainer)]) :
1279+
"LOOKING FOR A MAINTAINER! SUBMIT A PULL REQUEST TO THE INFRASTRUCTURE REPOSITORY!"
12781280
)
12791281
})
12801282
}

0 commit comments

Comments
 (0)