@cryptotaxi247 / kubo / commits / 2b3fafc24

feat(mkreleasenotes): include more repos

We should be including multiformats repos and repos from our core contributors.

Steven Allen committed May 8, 2020 at 19:37 UTC 2b3fafc243182cac5f962157449be8df83271068
1 file changed +24 -2
bin/mkreleaselog
+24 -2
@@ -6,8 +6,30 @@ export GOPATH="$(go env GOPATH)"
6
7 alias jq="jq --unbuffered"
8
9 -[[ -n "${REPO_FILTER+x}" ]] || REPO_FILTER="github.com/(ipfs|libp2p|ipld)"
10 -[[ -n "${IGNORED_FILES+x}" ]] || IGNORED_FILES='^\(\.gx\|package.json\|\.travis.yml\|go.mod\|go.sum\)$'
9 +AUTHORS=(
10 + # orgs
11 + ipfs
12 + ipld
13 + libp2p
14 + multiformats
15 + filecoin-project
16 + ipfs-shipyard
17 +
18 + # Authors of personal repos used by go-ipfs that should be mentioned in the
19 + # release notes.
20 + whyrusleeping
21 + Kubuxu
22 + jbenet
23 + Stebalien
24 + marten-seemann
25 + hsanjuan
26 + lucas-clemente
27 + warpfork
28 +)
29 +
30 +[[ -n "${REPO_FILTER+x}" ]] || REPO_FILTER="github.com/(${$(printf "|%s" "${AUTHORS[@]}"):1})"
31 +
32 +[[ -n "${IGNORED_FILES+x}" ]] || IGNORED_FILES='^\(\.gx\|package\.json\|\.travis\.yml\|go.mod\|go\.sum|\.github|\.circleci\)$'
33
34 NL=$'\n'
35