mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
Add script which generates list of release contributors
This commit is contained in:
parent
0d8910ec4b
commit
f8eadf4df3
9
scripts/generate-release-contributors-list
Executable file
9
scripts/generate-release-contributors-list
Executable file
@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Generates a list with all contributors between two tags
|
||||
# generate-release-contributors-list <tag-1> <tag-2>
|
||||
#
|
||||
# Example
|
||||
# $ ./generate-release-contributors-list v1.4.0 v1.5.0
|
||||
|
||||
git log $1..$2 --format='%aN' | sort | uniq > $2-contributors
|
||||
Loading…
x
Reference in New Issue
Block a user