-
Notifications
You must be signed in to change notification settings - Fork 111
/
settings.yml
79 lines (73 loc) · 2.29 KB
/
settings.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# These settings are synced to GitHub by https://probot.github.io/apps/settings/
repository:
description: "Rust TOML Parser"
homepage: "https://docs.rs/toml"
topics: "rust toml"
has_issues: true
has_projects: false
has_wiki: false
has_downloads: true
default_branch: main
# Preference: people do clean commits
allow_merge_commit: true
# Backup in case we need to clean up commits
allow_squash_merge: true
# Not really needed
allow_rebase_merge: false
allow_auto_merge: true
delete_branch_on_merge: true
squash_merge_commit_title: "PR_TITLE"
squash_merge_commit_message: "PR_BODY"
merge_commit_message: "PR_BODY"
labels:
- name: "A-parse"
description: "Area: Parsing TOML"
color: '#f7e101'
- name: "A-edit"
description: "Area: TOML editing API"
color: '#f7e101'
- name: "A-output"
description: "Area: Outputting TOML"
color: '#f7e101'
- name: "A-serde"
description: "Area: Serde integration"
color: '#f7e101'
- name: "A-error"
description: "Area: Error reporting"
color: '#f7e101'
- name: "A-docs"
description: "Area: Documentation"
color: '#f7e101'
- name: "A-meta"
description: "Area: Project-wide"
color: '#f7e101'
- name: "C-bug"
description: "Category: Things not working as expected"
color: '#f5f1fd'
- name: "C-enhancement"
description: "Category: Raise on the bar on expectations"
color: '#f5f1fd'
- name: "C-question"
description: Uncertainty is involved
color: '#f5f1fd'
- name: "M-breaking-change"
description: "Meta: Implementing or merging this will introduce a breaking change."
color: '#E10C02'
- name: "E-help-wanted"
description: "Call for participation: Help is requested to fix this issue."
color: '#02E10C'
# This serves more as documentation.
# Branch protection API was replaced by rulesets but settings isn't updated.
# See https://github.com/repository-settings/app/issues/825
#
# branches:
# - name: main
# protection:
# required_pull_request_reviews: null
# required_conversation_resolution: true
# required_status_checks:
# # Required. Require branches to be up to date before merging.
# strict: false
# contexts: ["CI", "Spell Check with Typos"]
# enforce_admins: false
# restrictions: null