-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathruleset.json
More file actions
42 lines (42 loc) · 1011 Bytes
/
Copy pathruleset.json
File metadata and controls
42 lines (42 loc) · 1011 Bytes
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
{
"name": "Contributor Ruleset",
"description": "Rules to enforce restrictions on contributors while allowing the admin to bypass them.",
"enforcement": "active",
"bypass_actors": [
{
"actor_id": "77398124",
"actor_type": "User",
"bypass_mode": "always"
}
],
"conditions": {
"ref_name": {
"include": [ "main", "develop" ],
"exclude": [ "admin/*", "owner/*" ]
}
},
"rules": [
{
"type": "pull_request",
"parameters": {
"required_approving_review_count": 1,
"dismiss_stale_reviews": true,
"require_code_owner_reviews": true,
"required_status_checks": {
"strict": true,
"contexts": [
"ci/build",
"ci/test",
"netlify/deploy-preview",
"vercel/deploy",
"dependabot"
]
}
}
},
{
"type": "required_linear_history",
"parameters": { }
}
]
}