From 0ca09c399faf0c1b4a34c01e8e82ac7f939b8da7 Mon Sep 17 00:00:00 2001 From: Hugo Montenegro Date: Mon, 24 Aug 2026 20:00:42 +0100 Subject: [PATCH] ci: CODEOWNERS on workflows so the human-authors gate cannot be silently removed --- .github/CODEOWNERS | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000..06f28fccb2 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,3 @@ +# Workflow files gate the human-authors policy. A PR that edits them needs a +# code-owner review, so the gate cannot be removed by a PR nobody reads. +/.github/workflows/ @Hugo0