docs: always show the commitor (#49881)

This commit is contained in:
二货爱吃白萝卜 2024-07-15 19:10:47 +08:00 committed by GitHub
parent cc56db669f
commit 0adecd843b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,26 +23,27 @@ const QUERY_TITLE = '.gh-header-title .js-issue-title';
const QUERY_DESCRIPTION_LINES = '.comment-body table tbody tr'; const QUERY_DESCRIPTION_LINES = '.comment-body table tbody tr';
const QUERY_AUTHOR = '.pull-discussion-timeline .TimelineItem:first .author:first'; const QUERY_AUTHOR = '.pull-discussion-timeline .TimelineItem:first .author:first';
// https://github.com/orgs/ant-design/teams/ant-design-collaborators/members // https://github.com/orgs/ant-design/teams/ant-design-collaborators/members
// no need filter: https://github.com/ant-design/ant-design/pull/49878#issuecomment-2227853899
const MAINTAINERS = [ const MAINTAINERS = [
'zombiej', // 'zombiej',
'afc163', // 'afc163',
'chenshuai2144', // 'chenshuai2144',
'shaodahong', // 'shaodahong',
'xrkffgg', // 'xrkffgg',
'AshoneA', // 'AshoneA',
'yesmeck', // 'yesmeck',
'bang88', // 'bang88',
'yoyo837', // 'yoyo837',
'hengkx', // 'hengkx',
'Rustin-Liu', // 'Rustin-Liu',
'fireairforce', // 'fireairforce',
'kerm1it', // 'kerm1it',
'madccc', // 'madccc',
'MadCcc', // 'MadCcc',
'li-jia-nan', // 'li-jia-nan',
'kiner-tang', // 'kiner-tang',
'Wxh16144', // 'Wxh16144',
].map((author) => author.toLowerCase()); ].map((author: string) => author.toLowerCase());
const cwd = process.cwd(); const cwd = process.cwd();
const git = simpleGit(cwd); const git = simpleGit(cwd);