From dcdddd24eb011ec222237177dab07a155d437aac Mon Sep 17 00:00:00 2001 From: dsdsdshe Date: Fri, 28 Nov 2025 18:57:30 +0800 Subject: [PATCH] feat: add CODEOWNERS file to define code ownership for PR reviews. --- CODEOWNERS | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 000000000..e13a3c310 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,12 @@ +# The CODEOWNERS file is used to define the maintainer of a specific file or directory in the code repository. +# Its main purpose is to automatically request designated maintainer to conduct code review in Pull Request (PR), +# in order to clarify code ownership, improve code quality, and accelerate the review process. + +# The lines starting with # are comments. +# Each line corresponds to a specified file or directory and maintainer by @ splitting. +# The rules are applied from top to bottom, and the last matching rule will take effect. + +/ @dsdsdshe +/mindquantum/algorithm/qaia/ @mangrovecoder +/tests/ @mangrovecoder +/mindquantum/algorithm/nisq/ @herunhong -- Gitee