-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
39 lines (35 loc) · 2.08 KB
/
Copy pathCODEOWNERS
File metadata and controls
39 lines (35 loc) · 2.08 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
# THIS is the file GitHub uses. When CODEOWNERS exists in more than one place,
# GitHub takes the first found searching .github/ -> root -> docs/, so a copy at
# the repository root is ignored entirely. Edit this one.
#
# Everything here is part of the supply chain for
# `curl -fsSL https://get.resq.software | sh` — a change to any path below ends
# up executing on a developer's machine.
#
# CODEOWNERS is advisory on its own. It binds only when the branch ruleset both
# requires code owner review AND does not let the author bypass it. Ruleset
# `default-branch-baseline` currently sets required_approving_review_count: 0
# and grants repository admins `bypass_mode: pull_request`, so an admin can
# still self-merge. Tighten that ruleset to make this file load-bearing.
#
# Membership: https://github.com/orgs/resq-software/teams/installer-maintainers
# Adding or removing a person is a team change, not a commit here.
# Default owner for everything not matched by a more specific rule.
* @resq-software/installer-maintainers
# The paths that actually reach a user's shell.
#
# Order matters, though not in the way it first looks: GitHub applies the LAST
# matching pattern, not the most specific one. These entries work because they
# come after `*`, not because they are narrower. Anything added below them that
# also matches would silently take them over, and multiple owners for one
# pattern must share a single line rather than stack on consecutive ones.
/install.sh @resq-software/installer-maintainers
/install.ps1 @resq-software/installer-maintainers
/scripts/ @resq-software/installer-maintainers
# The Worker and its pin set decide which bytes are served, and bin/ generates
# them. Cloudflare Workers Builds deploys worker/ straight from main, so a merge
# here is a production change.
/worker/ @resq-software/installer-maintainers
/bin/ @resq-software/installer-maintainers
/.github/workflows/ @resq-software/installer-maintainers
/.github/CODEOWNERS @resq-software/installer-maintainers