Skip to content

Commit

Permalink
chore: Remove build/chore/ci/docs/test and merge commits from CHANGEL… (
Browse files Browse the repository at this point in the history
#6057)

Signed-off-by: Alex Collins <alex_collins@intuit.com>
  • Loading branch information
alexec authored Jun 1, 2021
1 parent 0a0935c commit 232d97e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions hack/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ git tag -l 'v*' | grep -v 0.0.0 | sort -rV | while read last; do
if [ "$tag" != "" ]; then
echo "## $tag ($(git log $tag -n1 --format=%as))"
echo
git --no-pager log --format=' * [%h](https://github.com/argoproj/argo-workflows/commit/%H) %s' $last..$tag
git_log='git --no-pager log --no-merges --invert-grep --grep=\(build\|chore\|ci\|docs\|test\):'
$git_log --format=' * [%h](https://github.com/argoproj/argo-workflows/commit/%H) %s' $last..$tag
echo
echo "### Contributors"
echo
git --no-pager log --format=' * %an' $last..$tag | sort -u
$git_log --format=' * %an' $last..$tag | sort -u
echo
fi
tag=$last
Expand Down

0 comments on commit 232d97e

Please sign in to comment.