From c69ee5364a8b095e9441e78855c1d7783d63b481 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ChangZhuo=20Chen=20=28=E9=99=B3=E6=98=8C=E5=80=AC=29?= Date: Fri, 27 Jun 2025 10:43:59 +0800 Subject: [PATCH] feat(repository): add asdf-oama repo management --- terraform/github/repositories.tf | 14 ++++++++++++++ terraform/github/teams.tf | 7 +++++++ 2 files changed, 21 insertions(+) diff --git a/terraform/github/repositories.tf b/terraform/github/repositories.tf index 5087227..717dd50 100644 --- a/terraform/github/repositories.tf +++ b/terraform/github/repositories.tf @@ -815,6 +815,20 @@ locals { ] } + asdf-oama = { + description = "oama plugin for the asdf version manager" + homepage_url = "https://github.com/asdf-vm/asdf" + default_branch = "main" + topics = [ + "asdf-plugin", + "asdf", + ] + teams = [ + "asdf-oama", + "asdf-core", + ] + } + asdf-ocaml = { description = "OCaml plugin for the asdf version manager" homepage_url = "https://github.com/asdf-vm/asdf" diff --git a/terraform/github/teams.tf b/terraform/github/teams.tf index 578f794..97b9b30 100644 --- a/terraform/github/teams.tf +++ b/terraform/github/teams.tf @@ -402,6 +402,13 @@ locals { maintainers = [] } + asdf-oama = { + description = "The people with push access to the asdf-oama repository" + maintainers = [ + "czchen", + ] + } + asdf-ocaml = { description = "The people with push access to the asdf-ocaml repository" maintainers = []