Skip to content

Commit 9be1d22

Browse files
Add CODEOWNERS and dependabot.yml for security compliance (#350)
## Summary - Add CODEOWNERS file with team ownership (@davidliu @hiroshihorie @xianshijing-lk) - Add dependabot.yml for automated security updates (npm, github-actions) - Configure versioning-strategy to only update for security fixes ## Why This addresses security compliance requirements: - [Tier 0] Team ownership of code is documented (CODEOWNERS) - [Tier 1] System to automatically update dependencies with vulnerabilities (Dependabot) ## Test plan - [ ] Verify CODEOWNERS syntax is valid - [ ] Verify dependabot.yml syntax is valid - [ ] Confirm team members are correctly listed 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5b60518 commit 9be1d22

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# CODEOWNERS for client-sdk-react-native
2+
# These owners will be requested for review on all PRs
3+
4+
* @davidliu @hiroshihorie @xianshijing-lk

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
open-pull-requests-limit: 10
8+
versioning-strategy: "increase-if-necessary"
9+
10+
- package-ecosystem: "github-actions"
11+
directory: "/"
12+
schedule:
13+
interval: "weekly"
14+
open-pull-requests-limit: 5

0 commit comments

Comments
 (0)