Skip to content

Commit

Permalink
refactor: update config (#8)
Browse files Browse the repository at this point in the history
* chore: add test workflow

* refactor: update config
  • Loading branch information
Aarebecca authored Dec 17, 2024
1 parent 2c6ffc1 commit d1cd515
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 39 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test

on:
push:

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20

- uses: actions/checkout@v2

- name: Test
run: npm run test
93 changes: 54 additions & 39 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,75 +1,69 @@
{
"category": [
"Maintainer",
"Contributor",
"Skilled"
],
"category": ["Maintainer", "Contributor", "Skilled"],
"badges": {
"G Maintainer": {
"description": "AntV G 维护者",
"approach": [
"参与 AntV G 项目维护"
]
"approach": ["参与 AntV G 项目维护"]
},
"G Contributor": {
"description": "AntV G 贡献者",
"approach": [
"为 AntV G 项目提交 PR 并被合并"
]
"approach": ["为 AntV G 项目提交 PR 并被合并"]
},
"G2 Maintainer": {
"description": "AntV G2 维护者",
"approach": [
"参与 AntV G2 项目维护"
]
"approach": ["参与 AntV G2 项目维护"]
},
"G2 Contributor": {
"description": "AntV G2 贡献者",
"approach": [
"为 AntV G2 项目提交 PR 并被合并"
]
"approach": ["为 AntV G2 项目提交 PR 并被合并"]
},
"S2 Contributor": {
"description": "AntV S2 贡献者",
"approach": ["为 AntV S2 项目提交 PR 并被合并"]
},
"F2 Contributor": {
"description": "AntV F2 贡献者",
"approach": ["为 AntV F2 项目提交 PR 并被合并"]
},
"G6 Maintainer": {
"description": "AntV G6 维护者",
"approach": [
"参与 AntV G6 项目维护"
]
"approach": ["参与 AntV G6 项目维护"]
},
"G6 Contributor": {
"description": "AntV G6 贡献者",
"approach": [
"为 AntV G6 项目提交 PR 并被合并"
]
"approach": ["为 AntV G6 项目提交 PR 并被合并"]
},
"G6 Skilled": {
"description": "熟练使用 AntV G6",
"approach": [
"参与 AntV G6 知识问答活动并获得 90 分以上"
]
"approach": ["参与 AntV G6 知识问答活动并获得 90 分以上"]
},
"X6 Contributor": {
"description": "AntV X6 贡献者",
"approach": ["为 AntV X6 项目提交 PR 并被合并"]
},
"L7 Maintainer": {
"description": "AntV L7 维护者",
"approach": [
"参与 AntV L7 项目维护"
]
"approach": ["参与 AntV L7 项目维护"]
},
"L7 Contributor": {
"description": "AntV L7 贡献者",
"approach": [
"为 AntV L7 项目提交 PR 并被合并"
]
"approach": ["为 AntV L7 项目提交 PR 并被合并"]
},
"L7 Skilled": {
"description": "熟练使用 AntV L7",
"approach": [
"参与 AntV L7 知识问答活动并获得 90 分以上"
]
"approach": ["参与 AntV L7 知识问答活动并获得 90 分以上"]
},
"ADC Contributor": {
"description": "Ant Design Charts 贡献者",
"approach": ["为 Ant Design Charts 项目提交 PR 并被合并"]
},
"AVA Contributor": {
"description": "AntV AVA 贡献者",
"approach": ["为 AntV AVA 项目提交 PR 并被合并"]
},
"GPT-Vis Contributor": {
"description": "GPT-Vis 贡献者",
"approach": [
"为 GPT-Vis 项目提交 PR 并被合并"
]
"approach": ["为 GPT-Vis 项目提交 PR 并被合并"]
}
},
"style": {
Expand All @@ -89,12 +83,21 @@
"labelColor": "8B5DFF",
"color": "FFF"
},
"G Contributor": {
"extends": "Contributor"
},
"G2 Contributor": {
"extends": "Contributor"
},
"G2 Maintainer": {
"extends": "Maintainer"
},
"S2 Contributor": {
"extends": "Contributor"
},
"F2 Contributor": {
"extends": "Contributor"
},
"G2 Skilled": {
"extends": "Skilled"
},
Expand All @@ -113,11 +116,23 @@
"G6 User": {
"extends": "User"
},
"X6 Contributor": {
"extends": "Contributor"
},
"L7 Contributor": {
"extends": "Contributor"
},
"L7 Skilled": {
"extends": "Skilled"
},
"ADC Contributor": {
"extends": "Contributor"
},
"AVA Contributor": {
"extends": "Contributor"
},
"GPT-Vis Contributor": {
"extends": "Contributor"
}
}
}
}

0 comments on commit d1cd515

Please sign in to comment.