Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

add runtime migrations to release notes/changelog #6875

Merged
1 commit merged into from
Aug 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .maintain/gitlab/generate_changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ runtime_changes=""
api_changes=""
client_changes=""
changes=""
migrations=""

while IFS= read -r line; do
pr_id=$(echo "$line" | sed -E 's/.*#([0-9]+)\)$/\1/')
Expand All @@ -29,14 +30,19 @@ $line"
fi
if has_label 'paritytech/substrate' "$pr_id" 'B7-runtimenoteworthy'; then
runtime_changes="$runtime_changes
$line"
fi
if has_label 'paritytech/substrate' "$pr_id" 'D1-runtime-migration'; then
migrations="$migrations
$line"
fi
done <<< "$all_changes"

# Make the substrate section if there are any substrate changes
if [ -n "$runtime_changes" ] ||
[ -n "$api_changes" ] ||
[ -n "$client_changes" ]; then
[ -n "$client_changes" ] ||
[ -n "$migrations" ]; then
changes=$(cat << EOF
Substrate changes
-----------------
Expand Down Expand Up @@ -68,5 +74,12 @@ $api_changes"

$changes"
fi
if [ -n "$migrations" ]; then
changes="$changes

Runtime Migrations
------------------
$migrations"
fi

echo "$changes"