diff --git a/CHANGELOG.md b/CHANGELOG.md index 10a0682ca91e2681485a1aa968bdb1ff57cfee1a..044ca1d6b19574f428667db0b02fc9f85d27b1af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,10 +10,10 @@ WECHATY CONTRIBUTORS 1. @[binsee](https://github.com/binsee): [\#844](https://github.com/Chatie/wechaty/pull/844),[\#811](https://github.com/Chatie/wechaty/pull/811),[\#771](https://github.com/Chatie/wechaty/pull/771),[\#744](https://github.com/Chatie/wechaty/pull/744),[\#727](https://github.com/Chatie/wechaty/pull/727),[\#714](https://github.com/Chatie/wechaty/pull/714) 1. @[JasLin](https://github.com/JasLin): [\#404](https://github.com/Chatie/wechaty/pull/404),[\#358](https://github.com/Chatie/wechaty/pull/358),[\#105](https://github.com/Chatie/wechaty/pull/105),[\#100](https://github.com/Chatie/wechaty/pull/100),[\#78](https://github.com/Chatie/wechaty/pull/78),[\#76](https://github.com/Chatie/wechaty/pull/76) 1. @[xinbenlv](https://github.com/xinbenlv): [\#388](https://github.com/Chatie/wechaty/pull/388),[\#361](https://github.com/Chatie/wechaty/pull/361),[\#280](https://github.com/Chatie/wechaty/pull/280) +1. @[hczhcz](https://github.com/hczhcz): [\#684](https://github.com/Chatie/wechaty/pull/684),[\#640](https://github.com/Chatie/wechaty/pull/640) ### Contributors -1. @[hczhcz](https://github.com/hczhcz): [\#684](https://github.com/Chatie/wechaty/pull/684),[\#640](https://github.com/Chatie/wechaty/pull/640) 1. @[imerse](https://github.com/imerse): [\#578](https://github.com/Chatie/wechaty/pull/578) 1. @[FlyingBlazer](https://github.com/FlyingBlazer): [\#531](https://github.com/Chatie/wechaty/pull/531) 1. @[zhenyong](https://github.com/zhenyong): [\#770](https://github.com/Chatie/wechaty/pull/770) @@ -22,9 +22,7 @@ WECHATY CONTRIBUTORS 1. @[TingYinHelen](https://github.com/TingYinHelen): [\#605](https://github.com/Chatie/wechaty/pull/605) 1. @[ax4](https://github.com/ax4): [\#380](https://github.com/Chatie/wechaty/pull/380) 1. @[Gcaufy](https://github.com/Gcaufy): [\#310](https://github.com/Chatie/wechaty/pull/310) -1. @[snyk-bot](https://github.com/snyk-bot): [\#169](https://github.com/Chatie/wechaty/pull/169) 1. @[cherry-geqi](https://github.com/cherry-geqi): [\#97](https://github.com/Chatie/wechaty/pull/97) -1. @[gitter-badger](https://github.com/gitter-badger): [\#3](https://github.com/Chatie/wechaty/pull/3) # Change Log diff --git a/script/sort-contributiveness.ts b/script/sort-contributiveness.ts index 18a7eba67b1916f2fb4b83763185cb73fbe32f5c..549832a2a4e52914ab0578b45e2d9d6d587272dc 100755 --- a/script/sort-contributiveness.ts +++ b/script/sort-contributiveness.ts @@ -39,7 +39,7 @@ function processLine(line: string): void { } function outputContributorMd() { - const MIN_MAINTAINER_COMMIT_NUM = 3 + const MIN_MAINTAINER_COMMIT_NUM = 2 function isMaintainer(committer: string): boolean { return contributeMap[committer].length >= MIN_MAINTAINER_COMMIT_NUM } @@ -71,7 +71,15 @@ function outputContributorMd() { '', ].join('\n')) + const SKIP_NAME_LIST = [ + 'snyk-bot', + 'gitter-badger', + ] + const SKIP_REGEX = new RegExp(SKIP_NAME_LIST.join('|'), 'i') for (const contributor of Object.keys(contributeMap).sort(desc)) { + if (SKIP_REGEX.test(contributor)) { + continue + } if (!activeContributorList.includes(contributor)) { console.log(`1. @${contributor}: ${contributeMap[contributor].join(',')}`) }