From 91dd6482ce09a8bbbd3592e64f731a78f4c537cc Mon Sep 17 00:00:00 2001 From: fullex <0xfullex@gmail.com> Date: Sun, 14 Sep 2025 21:00:57 +0800 Subject: [PATCH] chore: add CODEOWNERS file to define ownership for specific directories - Created a CODEOWNERS file to specify ownership for migrations and data directories. - Assigned ownership to @0xfullex for the specified paths to streamline code review and management. --- .github/CODEOWNERS | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000..97cfd4469c --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,4 @@ +/migrations/ @0xfullex +/packages/shared/data/ @0xfullex +/src/main/data/ @0xfullex +/src/renderer/src/data/ @0xfullex \ No newline at end of file