Skip to content

Commit

Permalink
Add script to generate contributors list
Browse files Browse the repository at this point in the history
Add a shell script that will query GitHub and return a Markdown list of
all users that have contributed to the FIRRTL Specification.  This is
added to provide a simple way to generate an up-to-date list of all
contributors.

This does not automate the updating of the specification to include
these contributors.

Signed-off-by: Schuyler Eldridge <[email protected]>
  • Loading branch information
seldridge committed Mar 10, 2022
1 parent 7ef7db1 commit 311586b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/get-contributors.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env sh

curl -X GET https://api.github.com/repos/chipsalliance/firrtl-spec/contributors | \
jq '.[].login' | \
sort -u | \
sed 's/"\(.*\)"/- [`@\1`](https:\/\/github.com\/\1)/'

0 comments on commit 311586b

Please sign in to comment.