From 2b3fafc243182cac5f962157449be8df83271068 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Fri, 8 May 2020 19:37:20 -0700 Subject: [PATCH] feat(mkreleasenotes): include more repos We should be including multiformats repos and repos from our core contributors. --- bin/mkreleaselog | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/bin/mkreleaselog b/bin/mkreleaselog index 12f295249..89f437067 100755 --- a/bin/mkreleaselog +++ b/bin/mkreleaselog @@ -6,8 +6,30 @@ export GOPATH="$(go env GOPATH)" alias jq="jq --unbuffered" -[[ -n "${REPO_FILTER+x}" ]] || REPO_FILTER="github.com/(ipfs|libp2p|ipld)" -[[ -n "${IGNORED_FILES+x}" ]] || IGNORED_FILES='^\(\.gx\|package.json\|\.travis.yml\|go.mod\|go.sum\)$' +AUTHORS=( + # orgs + ipfs + ipld + libp2p + multiformats + filecoin-project + ipfs-shipyard + + # Authors of personal repos used by go-ipfs that should be mentioned in the + # release notes. + whyrusleeping + Kubuxu + jbenet + Stebalien + marten-seemann + hsanjuan + lucas-clemente + warpfork +) + +[[ -n "${REPO_FILTER+x}" ]] || REPO_FILTER="github.com/(${$(printf "|%s" "${AUTHORS[@]}"):1})" + +[[ -n "${IGNORED_FILES+x}" ]] || IGNORED_FILES='^\(\.gx\|package\.json\|\.travis\.yml\|go.mod\|go\.sum|\.github|\.circleci\)$' NL=$'\n'