This commit is contained in:
Fabrice Reix 2023-01-25 13:25:49 +01:00
parent 1d1d7c417e
commit 4c2f2abe8d
No known key found for this signature in database
GPG Key ID: 8D3D9DBDD96B2D30

View File

@ -3,7 +3,9 @@ set -Eeuo pipefail
# Check that issues in CHANGELOG are up-to-to-date
version=$(head -1 <CHANGELOG.md| cut -d" " -f1 | cut -d'[' -f2)
echo "version=$version"
changelog=$(bin/release/changelog_extract.py "$version" | grep '^\* ')
echo "get_release_note.py"
issues=$(bin/release/get_release_note.py "$version" 2>/dev/null | grep '^\* ')
if [ "$changelog" != "$issues" ]; then