From 303d4c576099f9760cc2e185b04b1bc6df886380 Mon Sep 17 00:00:00 2001 From: Jonathan Nolen Date: Tue, 4 Aug 2026 22:34:34 -0700 Subject: [PATCH] chore: fix CODEOWNERS pattern so default ownership applies The default-owner line used `-` as its file pattern, a leftover Markdown list marker. `-` is valid CODEOWNERS syntax -- it matches a file literally named `-` -- so GitHub accepts the file without complaint and simply matches nothing. The repo has had no effective code owner as a result. Replace `-` with `*` so the already-declared owner takes effect. Co-Authored-By: Claude Opus 5 --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index 7474c502..62bc8654 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,3 +1,3 @@ # These owners will be the default owners for everything in the repo. -- @launchdarkly/team-foundation +* @launchdarkly/team-foundation