Changelog order is now from oldest to newest
This commit is contained in:
parent
7d5afdd234
commit
b705a6ad11
@ -9,7 +9,7 @@ function GitHub-Release($versionNumber)
|
||||
$lastTag = git describe --tags --abbrev=0
|
||||
$tag = "$lastTag..HEAD"
|
||||
|
||||
$clArr = (& 'git' 'log', $tag, '--oneline')
|
||||
$clArr = [array]::Reverse((& 'git' 'log', $tag, '--oneline'))
|
||||
$changelog = $clArr | where { "$_" -notlike "*(POEditor.com)*" -and "$_" -notlike "*Merge branch*" -and "$_" -notlike "*Merge pull request*" -and "$_" -notlike "^-*" -and "$_" -notlike "*Merge remote tracking*" }
|
||||
$changelog = [string]::join([Environment]::NewLine, $changelog)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user