From 47c8a2af60e09f1df01f2b42eb03f1a39d4e3790 Mon Sep 17 00:00:00 2001 From: Larry Chen Date: Tue, 14 Apr 2026 14:31:22 +0800 Subject: [PATCH] chore: add .gitignore and CODEOWNERS for SCM compliance Add .gitignore to prevent committing local config, IDE files, and secrets. Add CODEOWNERS to define default code review ownership. Co-Authored-By: Claude Opus 4.6 --- .github/CODEOWNERS | 2 ++ .gitignore | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .gitignore diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..69a99af --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# Default code owners for dsx-github-actions +* @mmou-nv @huaweic-nv @abegnoche @lachen-nv diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0284ba0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# IDE +.vscode/ +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Secrets / local config +.env +.env.* +*.local + +# Node +node_modules/ + +# Helm +*.tgz