Skip to content

Commit

Permalink
Add a stories command to the release tool. (#3296)
Browse files Browse the repository at this point in the history
Generates a list of pivotal stories included in the release.
  • Loading branch information
jverkoey committed Apr 9, 2018
1 parent 207e59d commit 6ef3330
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/release
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,10 @@ generate_release_source() {
| grep "src/"
}

generate_release_stories() {
generate_release_log | grep -i pivotal
}

if [ $# -eq 0 ]; then
usage
exit 1
Expand Down Expand Up @@ -647,6 +651,7 @@ case "$1" in
log) generate_release_log ${@:2} ;;
notes) generate_release_notes ${@:2} ;;
source) generate_release_source ${@:2} ;;
stories) generate_release_stories ${@:2} ;;

abort) abort_release ${@:2} ;;

Expand Down

0 comments on commit 6ef3330

Please sign in to comment.