From b5d61b524a03186561aecac82c077491784d29bf Mon Sep 17 00:00:00 2001 From: Oliver Tan Date: Wed, 28 Jun 2023 02:05:20 +0000 Subject: [PATCH] roachtest: move awsdms test ownership to migrations Release note: None Epic: none --- TEAMS.yaml | 3 +++ pkg/cmd/roachtest/registry/owners.go | 1 + pkg/cmd/roachtest/tests/awsdms.go | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/TEAMS.yaml b/TEAMS.yaml index a2398693e946..1da22b5b29bc 100644 --- a/TEAMS.yaml +++ b/TEAMS.yaml @@ -89,3 +89,6 @@ cockroachdb/unowned: aliases: cockroachdb/rfc-prs: other triage_column_id: 0 # TODO +cockroachdb/migrations: + label: T-migrations + triage_column_id: 19552034 diff --git a/pkg/cmd/roachtest/registry/owners.go b/pkg/cmd/roachtest/registry/owners.go index 15fb8ffa1403..a23e823f24f1 100644 --- a/pkg/cmd/roachtest/registry/owners.go +++ b/pkg/cmd/roachtest/registry/owners.go @@ -24,6 +24,7 @@ const ( OwnerObsInf Owner = `obs-inf-prs` OwnerServer Owner = `server` // not currently staffed OwnerSQLFoundations Owner = `sql-foundations` + OwnerMigrations Owner = `migrations` OwnerSQLQueries Owner = `sql-queries` OwnerStorage Owner = `storage` OwnerTestEng Owner = `test-eng` diff --git a/pkg/cmd/roachtest/tests/awsdms.go b/pkg/cmd/roachtest/tests/awsdms.go index ab49fbd9980d..4a10267ed1b7 100644 --- a/pkg/cmd/roachtest/tests/awsdms.go +++ b/pkg/cmd/roachtest/tests/awsdms.go @@ -126,7 +126,7 @@ func dmsDescribeTasksInput(v *version.Version) *dms.DescribeReplicationTasksInpu func registerAWSDMS(r registry.Registry) { r.Add(registry.TestSpec{ Name: "awsdms", - Owner: registry.OwnerSQLFoundations, // TODO(otan): add a migrations OWNERS team + Owner: registry.OwnerMigrations, Cluster: r.MakeClusterSpec(1), Tags: []string{`default`, `awsdms`}, Run: runAWSDMS,