From c64db31397c7c486f8cf6a14f8d86d5a09d5d63b Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Wed, 27 Aug 2025 19:49:15 +0200 Subject: [PATCH] github: avoid single person code owners MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When a single person is listed as a code owner for a path, a PR that modifies files in that path *requires* that person to approve before merging, which can be a problem when that person is away. Add osbuild-reviewers to the pkg/disk/ package so that I'm not the only person that can approve PRs that modify files in that path. Similarly, add osbuild-reviewers to the test scripts. Since Tomáš and I are already members of osbuild-reviewers, the effect of those line now is that we will always be automatically assigned as reviewrs of PRs that modify files in those paths, and the rest of the reviewers are selected randomly from reviewers team. --- .github/CODEOWNERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index bacdae77b3..b309c1c52b 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -3,7 +3,7 @@ * @osbuild/osbuild-reviewers # Package-specific reviewers -/pkg/disk/ @achilleas-k +/pkg/disk/ @achilleas-k @osbuild/osbuild-reviewers # Test scripts -/test/scripts @achilleas-k @thozza +/test/scripts @achilleas-k @thozza @osbuild/osbuild-reviewers