You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# These settings are synced to GitHub by https://probot.github.io/apps/settings/
2
+
3
+
repository:
4
+
default_branch: main
5
+
delete_branch_on_merge: true
6
+
topics: code-management
7
+
8
+
teams:
9
+
- name: code-management
10
+
permission: admin
11
+
12
+
branches:
13
+
- name: main
14
+
protection:
15
+
required_pull_request_reviews: # Required. Require at least one approving review on a pull request, before merging. Set to null to disable.
16
+
required_approving_review_count: 1# The number of approvals required. (1-6)
17
+
dismiss_stale_reviews: false # Dismiss approved reviews automatically when a new commit is pushed.
18
+
require_code_owner_reviews: true # Blocks merge until code owners have reviewed.
19
+
dismissal_restrictions: # Specify which users and teams can dismiss pull request reviews. Pass an empty dismissal_restrictions object to disable. User and team dismissal_restrictions are only available for organization-owned repositories. Omit this parameter for personal repositories.
20
+
users: []
21
+
teams: []
22
+
23
+
required_status_checks: # Required. Require status checks to pass before merging. Set to null to disable
24
+
strict: true # Required. Require branches to be up to date before merging.
25
+
contexts: [] # Required. The list of status checks to require in order to merge into this branch
26
+
# checks: [] # Don't list any checks that must pass by default.
27
+
28
+
enforce_admins: true # Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable.
29
+
restrictions: null # Required. Restrict who can push to this branch. Team and user restrictions are only available for organization-owned repositories. Set to null to disable.
30
+
31
+
# Rules to explicitly disallow force pushes and branch deletions
0 commit comments