This is an automated email from the ASF dual-hosted git repository.
twice pushed a commit to branch add-new-committers
in repository https://gitbox.apache.org/repos/asf/kvrocks-website.git
The following commit(s) were added to refs/heads/add-new-committers by this
push:
new 6aaf52c fix
6aaf52c is described below
commit 6aaf52cbf82abc5d36c0dfcd42a98b9735906529
Author: Twice <[email protected]>
AuthorDate: Tue Jul 25 23:09:35 2023 +0000
fix
---
src/components/Committers/index.tsx | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/src/components/Committers/index.tsx
b/src/components/Committers/index.tsx
index b9f1b43..5890efe 100644
--- a/src/components/Committers/index.tsx
+++ b/src/components/Committers/index.tsx
@@ -5,32 +5,33 @@ type CommitterData = {
name: string,
apacheId: string,
githubId: string,
+ isPMC: boolean,
}
// sorted by apacheId
const committers: CommitterData[] = [
- {name: 'Aleks Lozoviuk', apacheId: 'aleksraiden', githubId: 'aleksraiden'},
+ {name: 'Aleks Lozoviuk', apacheId: 'aleksraiden', githubId: 'aleksraiden',
isPMC: false},
{name: 'Donghui Liu', apacheId: 'alfejik', githubId: 'Alfejik', isPMC:
true},
- {name: 'Binbin Zhu', apacheId: 'binbin', githubId: 'enjoy-binbin'},
- {name: 'Brad Lee', apacheId: 'bradlee', githubId: 'smartlee'},
- {name: 'Pengbo Cai', apacheId: 'caipengbo', githubId: 'caipengbo'},
+ {name: 'Binbin Zhu', apacheId: 'binbin', githubId: 'enjoy-binbin', isPMC:
false},
+ {name: 'Brad Lee', apacheId: 'bradlee', githubId: 'smartlee', isPMC:
false},
+ {name: 'Pengbo Cai', apacheId: 'caipengbo', githubId: 'caipengbo', isPMC:
false},
{name: 'Liang Chen', apacheId: 'chenliang613', githubId: 'chenliang613',
isPMC: true},
- {name: 'Chris Zou', apacheId: 'chriszou', githubId: 'ChrisZMF'},
- {name: 'Colin Chamber', apacheId: 'colinchamber', githubId:
'ColinChamber'},
+ {name: 'Chris Zou', apacheId: 'chriszou', githubId: 'ChrisZMF', isPMC:
false},
+ {name: 'Colin Chamber', apacheId: 'colinchamber', githubId:
'ColinChamber', isPMC: false},
{name: 'Xiaoqiao He', apacheId: 'hexiaoqiao', githubId: 'Hexiaoqiao',
isPMC: true},
{name: 'Hulk Lin', apacheId: 'hulk', githubId: 'git-hulk', isPMC: true},
{name: 'Jean-Baptiste Onofré', apacheId: 'jbonofre', githubId: 'jbonofre',
isPMC: true},
- {name: 'Jean Lai', apacheId: 'jeanbone', githubId: 'jeanbone'},
- {name: 'Miuyong Liu', apacheId: 'karelrooted', githubId: 'karelrooted'},
- {name: 'Xuwei Fu', apacheId: 'maplefu', githubId: 'mapleFU'},
- {name: 'Shang Xiong', apacheId: 'shang', githubId: 'shangxiaoxiong'},
- {name: 'Ruixiang Tan', apacheId: 'tanruixiang', githubId: 'tanruixiang'},
+ {name: 'Jean Lai', apacheId: 'jeanbone', githubId: 'jeanbone', isPMC:
false},
+ {name: 'Miuyong Liu', apacheId: 'karelrooted', githubId: 'karelrooted',
isPMC: false},
+ {name: 'Xuwei Fu', apacheId: 'maplefu', githubId: 'mapleFU', isPMC: false},
+ {name: 'Shang Xiong', apacheId: 'shang', githubId: 'shangxiaoxiong',
isPMC: false},
+ {name: 'Ruixiang Tan', apacheId: 'tanruixiang', githubId: 'tanruixiang',
isPMC: false},
{name: 'Zili Chen', apacheId: 'tison', githubId: 'tisonkun', isPMC: true},
{name: 'Yaroslav Stepanchuk', apacheId: 'torwig', githubId: 'torwig',
isPMC: true},
{name: 'Mingyang Liu', apacheId: 'twice', githubId: 'PragmaTwice', isPMC:
true},
{name: 'Von Gosling', apacheId: 'vongosling', githubId: 'vongosling',
isPMC: true},
{name: 'Yuan Wang', apacheId: 'wangyuan', githubId: 'ShooterIT', isPMC:
true},
- {name: 'Xiaobiao Zhao', apacheId: 'xiaobiao', githubId: 'xiaobiaozhao'},
+ {name: 'Xiaobiao Zhao', apacheId: 'xiaobiao', githubId: 'xiaobiaozhao',
isPMC: false},
]
export default function Committers(): JSX.Element {