We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea48bb commit c6902d1Copy full SHA for c6902d1
1 file changed
infra/scripts/prepare_release_msg.sh
@@ -6,7 +6,7 @@ CURRENTVERSION=$(git tag | sort -r | tr '\n' ' ' | cut -d" " -f1)
6
7
LATESTVERSION=$(git tag | sort -r | tr '\n' ' ' | cut -d" " -f2)
8
9
-GITLOG=$(git log "...$LATESTVERSION" --oneline)
+GITLOG=$(git log "$LATESTVERSION...$CURRENTVERSION" --oneline)
10
11
ADDED=$(echo "$GITLOG" | grep -E "\[(feat|test)\]" | sed 's/^/- /')
12
if [ -n "$ADDED" ]
0 commit comments