mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
chore(justfile): sorts the contributors by commits
This commit is contained in:
parent
6bf5bf5bee
commit
fa3876ce36
1 changed files with 5 additions and 2 deletions
7
justfile
7
justfile
|
@ -2,10 +2,13 @@
|
|||
echo 'Removing old CONTRIBUTORS.md'
|
||||
mv CONTRIBUTORS.md CONTRIBUTORS.md.bak
|
||||
echo 'Downloading a list of new contributors'
|
||||
echo "The following is a list of contributors in alphabetical order:" > CONTRIBUTORS.md
|
||||
echo "the following is a list of contributors:" > CONTRIBUTORS.md
|
||||
echo "" >> CONTRIBUTORS.md
|
||||
echo "" >> CONTRIBUTORS.md
|
||||
githubcontrib --owner kbknapp --repo clap-rs --sha master --cols 6 --format md --showlogin true --sortBy login >> CONTRIBUTORS.md
|
||||
githubcontrib --owner kbknapp --repo clap-rs --sha master --cols 6 --format md --showlogin true --sortBy contributions --sortOrder desc >> CONTRIBUTORS.md
|
||||
echo "" >> CONTRIBUTORS.md
|
||||
echo "" >> CONTRIBUTORS.md
|
||||
echo "This list was generated by [mgechev/github-contributors-list](https://github.com/mgechev/github-contributors-list)" >> CONTRIBUTORS.md
|
||||
rm CONTRIBUTORS.md.bak
|
||||
|
||||
run-test TEST:
|
||||
|
|
Loading…
Reference in a new issue