From 132c7fa2347f72057a848b10221659cb95e2cc79 Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Fri, 26 Jun 2026 06:24:36 +0530 Subject: [PATCH 1/2] ci: add CODEOWNERS and dependabot.yml --- .github/CODEOWNERS | 28 ++++++++++++++++++++++++++++ .github/dependabot.yml | 16 ++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/dependabot.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..f42a6ed7 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,28 @@ +# CODEOWNERS for tok (secrets & token scanning engine) +* @GrayCodeAI/maintainers + +# Engine core +/internal/ @GrayCodeAI/core-team +/filters/ @GrayCodeAI/core-team +/rules/ @GrayCodeAI/core-team +/plugins/ @GrayCodeAI/core-team +/commands/ @GrayCodeAI/core-team +/config/ @GrayCodeAI/core-team + +# Security-sensitive scanning logic +/skills/ @GrayCodeAI/security-team + +# API surface +/api/ @GrayCodeAI/core-team +/mcp/ @GrayCodeAI/core-team + +# CI / release / build tooling +/.github/ @GrayCodeAI/devops-team +/Makefile @GrayCodeAI/devops-team +/lefthook.yml @GrayCodeAI/devops-team +/scripts/ @GrayCodeAI/devops-team +/.goreleaser.yml @GrayCodeAI/devops-team + +# Documentation +*.md @GrayCodeAI/docs-team +/docs/ @GrayCodeAI/docs-team diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..1b614bba --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +version: 2 +updates: + - package-ecosystem: gomod + directory: / + schedule: + interval: weekly + groups: + go-deps: + patterns: ["*"] + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + groups: + actions: + patterns: ["*"] From 1eff3aec6fc5672d94be497bac01da6917b3b5ee Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Fri, 26 Jun 2026 06:35:14 +0530 Subject: [PATCH 2/2] chore: remove dependabot.yml --- .github/dependabot.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 1b614bba..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,16 +0,0 @@ -version: 2 -updates: - - package-ecosystem: gomod - directory: / - schedule: - interval: weekly - groups: - go-deps: - patterns: ["*"] - - package-ecosystem: github-actions - directory: / - schedule: - interval: weekly - groups: - actions: - patterns: ["*"]