mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 03:31:05 +00:00
add runtime migrations to release notes/changelog (#6875)
This commit is contained in:
@@ -11,6 +11,7 @@ runtime_changes=""
|
|||||||
api_changes=""
|
api_changes=""
|
||||||
client_changes=""
|
client_changes=""
|
||||||
changes=""
|
changes=""
|
||||||
|
migrations=""
|
||||||
|
|
||||||
while IFS= read -r line; do
|
while IFS= read -r line; do
|
||||||
pr_id=$(echo "$line" | sed -E 's/.*#([0-9]+)\)$/\1/')
|
pr_id=$(echo "$line" | sed -E 's/.*#([0-9]+)\)$/\1/')
|
||||||
@@ -29,6 +30,10 @@ $line"
|
|||||||
fi
|
fi
|
||||||
if has_label 'paritytech/substrate' "$pr_id" 'B7-runtimenoteworthy'; then
|
if has_label 'paritytech/substrate' "$pr_id" 'B7-runtimenoteworthy'; then
|
||||||
runtime_changes="$runtime_changes
|
runtime_changes="$runtime_changes
|
||||||
|
$line"
|
||||||
|
fi
|
||||||
|
if has_label 'paritytech/substrate' "$pr_id" 'D1-runtime-migration'; then
|
||||||
|
migrations="$migrations
|
||||||
$line"
|
$line"
|
||||||
fi
|
fi
|
||||||
done <<< "$all_changes"
|
done <<< "$all_changes"
|
||||||
@@ -36,7 +41,8 @@ done <<< "$all_changes"
|
|||||||
# Make the substrate section if there are any substrate changes
|
# Make the substrate section if there are any substrate changes
|
||||||
if [ -n "$runtime_changes" ] ||
|
if [ -n "$runtime_changes" ] ||
|
||||||
[ -n "$api_changes" ] ||
|
[ -n "$api_changes" ] ||
|
||||||
[ -n "$client_changes" ]; then
|
[ -n "$client_changes" ] ||
|
||||||
|
[ -n "$migrations" ]; then
|
||||||
changes=$(cat << EOF
|
changes=$(cat << EOF
|
||||||
Substrate changes
|
Substrate changes
|
||||||
-----------------
|
-----------------
|
||||||
@@ -68,5 +74,12 @@ $api_changes"
|
|||||||
|
|
||||||
$changes"
|
$changes"
|
||||||
fi
|
fi
|
||||||
|
if [ -n "$migrations" ]; then
|
||||||
|
changes="$changes
|
||||||
|
|
||||||
|
Runtime Migrations
|
||||||
|
------------------
|
||||||
|
$migrations"
|
||||||
|
fi
|
||||||
|
|
||||||
echo "$changes"
|
echo "$changes"
|
||||||
|
|||||||
Reference in New Issue
Block a user