-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
44 lines (40 loc) · 2.06 KB
/
Copy pathCODEOWNERS
File metadata and controls
44 lines (40 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# CODEOWNERS — auto-assigned reviewers per repo area (EPAC-332).
#
# Today the team is solo (@sunnypurewal). As we grow to four developers the
# placeholders below will be filled in (uncomment + replace), each pulling
# their own area: ViewModels, Services, backend pipelines, website. Until
# then everything routes to @sunnypurewal so PRs always have an owner.
#
# Syntax: github.com/some-pattern github-handle [github-handle ...]
# Last matching line wins, so order from least to most specific.
* @sunnypurewal
# Release automation, signing, and credential-shaped files require a human
# owner even when an autonomous review loop approves the rest of a PR.
/.github/ @sunnypurewal
/fastlane/ @sunnypurewal
/ios/fastlane/ @sunnypurewal
/ios/Gemfile @sunnypurewal
/ios/Gemfile.lock @sunnypurewal
/ios/Makefile @sunnypurewal
/ios/appstro.json @sunnypurewal
/ios/Config/ @sunnypurewal
/ios/epac.xcodeproj/ @sunnypurewal
/ios/**/*.entitlements @sunnypurewal
/ios/**/*.xcconfig @sunnypurewal
/ios/**/Info.plist @sunnypurewal
/ios/**/*.xcprivacy @sunnypurewal
**/*.pem @sunnypurewal
**/*.key @sunnypurewal
**/*Secrets* @sunnypurewal
**/*secrets* @sunnypurewal
# Future area ownership (uncomment when each developer is on board)
# ios/epac/Views/**/*ViewModel.swift @developer-a
# ios/epac/Views/ContentViewModel.swift @developer-a
# ios/epac/Util/*Service.swift @developer-b
# ios/epac/Util/*Manager.swift @developer-b
# backend/ @developer-c
# website/ @developer-d
# Schema migrations require an extra reviewer (see CLAUDE.md "Shared model
# change protocol"). Owners listed here in addition to area owner above.
ios/epac/Model/Migration.swift @sunnypurewal
ios/epac/Model/Model.swift @sunnypurewal