Skip to content

Commit a16537e

Browse files
committed
Merge branch 'add-codeowners'
2 parents db67d44 + b7b2419 commit a16537e

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

.github/CODEOWNERS

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Defining who has to review changes to what files.
2+
# Try to keep the entries sorted alphabetically, so they end up in the same order as
3+
# they would if you listed the entire repository as a tree.
4+
5+
# Container images used for building the app are owned by respective team leads and tech lead
6+
/building/android-container-image.txt @faern @albin-mullvad
7+
/building/linux-container-image.txt @faern @raksooo
8+
9+
# Developer signing keys must be approved by team/tech leads
10+
/ci/keys/ @faern @raksooo @pinkisemils @albin-mullvad
11+
12+
# Desktop build server files owned by desktop leads
13+
/ci/buildserver* @faern @raksooo
14+
/ci/linux-repository-builder/ @faern @raksooo
15+
16+
# Cargo deny config must be approved by tech lead or desktop team lead
17+
**/deny.toml @faern @raksooo
18+
19+
# Changes to what CVEs are ignored must be approved by leads
20+
**/osv-scanner.toml @faern @raksooo @pinkisemils @albin-mullvad
21+
/.github/workflows/osv-scanner*.yml @faern @raksooo @pinkisemils @albin-mullvad
22+
23+
# The CODEOWNERS itself must be protected from unauthorized changes,
24+
# otherwise the protection becomes quite moot.
25+
# Keep this entry last, so it is sure to override any existing previous wildcard match
26+
/.github/CODEOWNERS @faern @raksooo @pinkisemils @albin-mullvad

.github/workflows/android-app.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- '**'
77
- '!.github/workflows/**'
88
- '.github/workflows/android-app.yml'
9+
- '!.github/CODEOWNERS'
910
- '!audits/**'
1011
- '!ci/**'
1112
- '!dist-assets/**'

.github/workflows/daemon.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- '!**/**.md'
88
- '!.github/workflows/**'
99
- '.github/workflows/daemon.yml'
10+
- '!.github/CODEOWNERS'
1011
- '!android/**'
1112
- '!audits/**'
1213
- '!build-apk.sh'

.github/workflows/verify-locked-down-signatures.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
pull_request:
55
paths:
66
- .github/workflows/verify-locked-down-signatures.yml
7+
- .github/CODEOWNERS
78
- Cargo.toml
89
- test/Cargo.toml
910
- Cargo.lock

0 commit comments

Comments
 (0)