Skip to content

Commit

Permalink
feat: add hypertrons config file
Browse files Browse the repository at this point in the history
Signed-off-by: Frankzhaopku <syzhao1988@126.com>
  • Loading branch information
frank-zsy committed May 16, 2020
1 parent 88d4d95 commit d1df156
Showing 1 changed file with 169 additions and 0 deletions.
169 changes: 169 additions & 0 deletions .github/hypertrons.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,169 @@
{
"label_setup": {
"version": 1,
"labels": [
{
"__merge__": true
},
{
"name": "difficulty/1",
"description": "Difficulty score for issue or pull, 1 score",
"color": "008672"
},
{
"name": "difficulty/2",
"description": "Difficulty score for issue or pull, 2 score",
"color": "f1ee18"
},
{
"name": "difficulty/3",
"description": "Difficulty score for issue or pull, 3 score",
"color": "67a8f7"
},
{
"name": "difficulty/5",
"description": "Difficulty score for issue or pull, 5 score",
"color": "f7be99"
},
{
"name": "difficulty/8",
"description": "Difficulty score for issue or pull, 8 score, should split the issue",
"color": "e11d21"
},
{
"name": "pull/approved",
"description": "If a pull is approved, it will be automatically merged",
"color": "008672"
},
{
"name": "kind/community",
"description": "Community related issue or pull",
"color": "99ff66",
"keywords": [
"community"
]
},
{
"name": "kind/CICD",
"description": "CI/CD related issue or pull",
"color": "0099ff",
"keywords": [
"continuous integration",
"continuous delivery",
"[ci]",
"[cd]",
"[ci/cd]"
]
}
]
},
"weekly_report": {
"version": 1,
"generateTime": "0 0 12 * * 1"
},
"role": {
"version": 1,
"roles": [
{
"name": "committer",
"description": "Committer of the project",
"users": [
"frank-zsy",
"heming6666"
],
"commands": [
"/difficulty",
"/rerun",
"/complete-checklist",
"/start-vote"
]
},
{
"name": "replier",
"description": "Replier is responsible for reply issues in time",
"users": [
"frank-zsy",
"heming6666"
],
"commands": []
},
{
"name": "approver",
"description": "After approvers' approve, pulls should be merged automatically",
"users": [
"frank-zsy",
"heming6666"
],
"commands": [
"/approve"
]
},
{
"name": "author",
"description": "Author of the issue or pull",
"users": [],
"commands": [
"/rerun"
]
},
{
"name": "notauthor",
"description": "Not author of the issue or pull",
"users": [],
"commands": [
"/approve"
]
},
{
"name": "anyone",
"description": "Anyone",
"users": [],
"commands": [
"/self-assign",
"/vote"
]
}
]
},
"command": {
"version": 1,
"commands": [
{
"name": "/approve",
"scopes": [
"review",
"review_comment",
"pull_comment"
]
}
]
},
"approve": {
"version": 1
},
"auto_merge": {
"version": 1,
"sched": "0 */5 * * * *"
},
"difficulty": {
"version": 1
},
"issue_reminder": {
"version": 1
},
"rerun": {
"version": 1
},
"auto_label": {
"version": 1
},
"self_assign": {
"version": 1
},
"complete_checklist": {
"version": 1
},
"vote": {
"version": 1
}
}

0 comments on commit d1df156

Please sign in to comment.