Skip to content

Commit 348a5b7

Browse files
author
Charlike Mike Reagent
authored
chore: add Settings Probot
1 parent 9060b38 commit 348a5b7

File tree

1 file changed

+122
-0
lines changed

1 file changed

+122
-0
lines changed

.github/settings.yml

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
repository:
2+
# See https://developer.github.com/v3/repos/#edit for all available settings.
3+
4+
# The name of the repository. Changing this will rename the repository
5+
name: opensource
6+
7+
# A short description of the repository that will show up on GitHub
8+
description: "Delivering delightful digital solutions. JavaScript Open Source Monorepo, semantically versioned following @conventional-commits. Fully powered by Jest, @Babel TypeScript, @Airbnb @ESLint + @Prettier, @YarnPKG + @Lerna independent versioning, amazing GitHub @Actions and automated dependency updates with @RenovateBot."
9+
10+
# A URL with more information about the repository
11+
homepage: https://tunnckocore.com/opensource
12+
13+
# Either `true` to make the repository private, or `false` to make it public.
14+
private: false
15+
16+
# Either `true` to enable issues for this repository, `false` to disable them.
17+
has_issues: true
18+
19+
# Either `true` to enable the wiki for this repository, `false` to disable it.
20+
has_wiki: false
21+
22+
# Either `true` to enable downloads for this repository, `false` to disable them.
23+
has_downloads: true
24+
25+
# Updates the default branch for this repository.
26+
default_branch: master
27+
28+
# Either `true` to allow squash-merging pull requests, or `false` to prevent
29+
# squash-merging.
30+
allow_squash_merge: true
31+
32+
# Either `true` to allow merging pull requests with a merge commit, or `false`
33+
# to prevent merging pull requests with merge commits.
34+
allow_merge_commit: false
35+
36+
# Either `true` to allow rebase-merging pull requests, or `false` to prevent
37+
# rebase-merging.
38+
allow_rebase_merge: true
39+
40+
labels:
41+
- name: duplicate
42+
color: "a3a3a3"
43+
description: This issue or pull request topic/problem already exists
44+
45+
- name: good first issue
46+
color: "1d76db"
47+
description: Good for newcomers and first-time contributors.
48+
49+
- name: Priority: Critical
50+
color: "ee0701"
51+
description: This should be dealt with ASAP. Not fixing this issue would be a serious error.
52+
53+
- name: Priority: High
54+
color: "d93f0b"
55+
description: After critical issues are fixed, these should be dealt with before any further issues.
56+
57+
- name: Priority: Medium
58+
color: "fbca04"
59+
description: This issue may be useful, and needs some attention.
60+
61+
- name: Priority: Low
62+
color: "0e8a16"
63+
description: This issue can probably be picked up by anyone looking to contribute to the project, as an entry fix.
64+
65+
- name: Status: Available
66+
color: "c2e0c6"
67+
description: No one has claimed responsibility for resolving this issue. Generally this will be applied to bugs and enhancement issues, but may be applied to others.
68+
69+
- name: Status: Accepted
70+
color: "78cc35"
71+
description: It's clear what the subject of the issue is about, and what the resolution should be.
72+
73+
- name: Status: Blocked
74+
color: "d73a4a"
75+
description: There is another issue that needs to be resolved first, or a specific person is required to comment or reply to progress. There may also be some external blocker.
76+
77+
- name: Status: Abandoned
78+
color: "000000"
79+
description: It's believed that this issue is no longer important to the requestor and no one else has shown an interest in it.
80+
81+
- name: Status: In Progress
82+
color: "cccccc"
83+
description: This issue is being worked on, and has someone assigned.
84+
85+
- name: Status: On Hold
86+
color: "e99695"
87+
description: Similar to blocked, but is assigned to someone. May also be assigned to someone because of their experience, but it's recognised they are unable to process the issue at this time.
88+
89+
- name: Status: Completed
90+
color: "adff60"
91+
description: Issue with steps to reproduce the bug that’s been verified by at least one reviewer.
92+
93+
- name: Status: Review Needed
94+
color: "fbca04"
95+
description: The issue has a PR attached to it which needs to be reviewed. Should receive review by others in the community, and at least one member / comitter. Specifics on when merging PRs is allowed is still up for debate.
96+
97+
- name: Status: Revision Needed
98+
color: "006b75"
99+
description: At least two people have seen issues in the PR that makes them uneasy. Submitter of PR needs to revise the PR related to the issue.
100+
101+
- name: Type: Bug
102+
color: "ee0701"
103+
description: Inconsistencies or issues which will cause an issue or problem for users or implementors.
104+
105+
- name: Type: Maintenance
106+
color: "fbca04"
107+
description: Updating phrasing or wording to make things clearer or removing ambiguity, without changing the functionality.
108+
109+
- name: Type: Enhancement
110+
color: "d4c5f9"
111+
description: Most issues will probably ask for additions or changes. It's expected that this type of issue will result in a Pull Request.
112+
113+
- name: Type: Question
114+
color: "cc317c"
115+
description: A query or seeking clarification on parts of the spec. Probably doesn't need the attention of everyone, just a few to help bring clarification or explain intent.
116+
117+
- name: Type: Documentation
118+
color: #5319e7
119+
description: An Issue or Pull Request for improving or updating documentation.
120+
121+
- name: Status: Proposal
122+
color: "d4c5f9"

0 commit comments

Comments
 (0)