Use release note script with GitHub token.

This commit is contained in:
Jean-Christophe Amiel 2024-12-03 14:31:10 +01:00
parent bad439942d
commit 1025eae405
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ fi
echo "version=$version" echo "version=$version"
echo "date=$date" echo "date=$date"
changelog=$(bin/release/changelog_extract.py "$version" | grep '^\* ') changelog=$(bin/release/changelog_extract.py "$version" | grep '^\* ')
issues=$(bin/release/get_release_note.py "$version" | grep '^\* ') issues=$(bin/release/get_release_note.py --token "$GITHUB_TOKEN" "$version" | grep '^\* ')
if [ "$changelog" != "$issues" ]; then if [ "$changelog" != "$issues" ]; then
echo "Diff in issues in CHANGELOG" echo "Diff in issues in CHANGELOG"