Skip to content

Commit 406f2d7

Browse files
authored
Merge branch 'master' into vibe
2 parents 126ac28 + eb870d7 commit 406f2d7

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed

.github/settings.yml

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# GitHub Settings App Configuration
2+
# https://github.com/apps/settings
3+
# These settings are synced to GitHub by the Settings app
4+
5+
repository:
6+
# Repository name
7+
name: stuff
8+
9+
# A short description of the repository
10+
description: "C++ utility library - reusable code for common patterns"
11+
12+
# A URL with more information about the repository
13+
homepage: ""
14+
15+
# Repository topics
16+
topics: cpp, cplusplus, header-only, library, utilities
17+
18+
# Either `true` to make the repository private, or `false` to make it public
19+
private: false
20+
21+
# Either `true` to enable issues for this repository, `false` to disable them
22+
has_issues: true
23+
24+
# Either `true` to enable projects for this repository, or `false` to disable them
25+
has_projects: false
26+
27+
# Either `true` to enable the wiki for this repository, `false` to disable it
28+
has_wiki: false
29+
30+
# Updates the default branch for this repository
31+
default_branch: master
32+
33+
# Either `true` to allow squash-merging pull requests, or `false` to prevent it
34+
allow_squash_merge: true
35+
36+
# Either `true` to allow merging pull requests with a merge commit, or `false` to prevent it
37+
allow_merge_commit: true
38+
39+
# Either `true` to allow rebase-merging pull requests, or `false` to prevent it
40+
allow_rebase_merge: true
41+
42+
# Either `true` to enable automatic deletion of branches on merge, or `false` to disable
43+
delete_branch_on_merge: true
44+
45+
# Either `true` to always suggest updating pull request branches, or `false` to disable
46+
allow_update_branch: true
47+
48+
# Either `true` to allow auto-merge on pull requests, or `false` to disable
49+
allow_auto_merge: true
50+
51+
# Either `true` to enable automated security fixes, or `false` to disable
52+
enable_automated_security_fixes: true
53+
54+
# Either `true` to enable vulnerability alerts, or `false` to disable
55+
enable_vulnerability_alerts: true
56+
57+
# Branch protection rules
58+
branches:
59+
- name: master
60+
# https://docs.github.com/en/rest/branches/branch-protection
61+
protection:
62+
# Required. Require at least one approving review on a pull request, before merging
63+
required_pull_request_reviews: null
64+
65+
# Required. Require status checks to pass before merging
66+
required_status_checks:
67+
# Required. Require branches to be up to date before merging
68+
strict: true
69+
# Required. The list of status checks to require in order to merge into this branch
70+
contexts:
71+
- build-linux
72+
- build-windows
73+
74+
# Required. Enforce all configured restrictions for administrators
75+
enforce_admins: false
76+
77+
# Required. Restrict who can push to this branch
78+
restrictions: null
79+
80+
# Prevent merge commits from being pushed to matching branches
81+
required_linear_history: false
82+
83+
# Permit force pushes for all users with push access
84+
allow_force_pushes: false
85+
86+
# Allow users with push access to delete matching branches
87+
allow_deletions: false

0 commit comments

Comments
 (0)