v0.8.10 (Polkadot 10) (#1277)

* Rename old labels.

* Bump runtimes

* Bump versions

* Bump lock
This commit is contained in:
Gavin Wood
2020-06-17 13:03:23 +02:00
committed by GitHub
parent 43d99bf24b
commit fdda80295f
25 changed files with 186 additions and 184 deletions
+5 -5
View File
@@ -110,16 +110,16 @@ then
please make sure versions are bumped in polkadot accordingly
EOT
# Now check if any of the substrate changes have been tagged B2-breaksapi
# Now check if any of the substrate changes have been tagged D2-breaksapi
(
cd "${SUBSTRATE_CLONE_DIR}"
substrate_changes="$(sanitised_git_logs "${SUBSTRATE_PREV_REF}" "${SUBSTRATE_NEW_REF}")"
echo "$substrate_changes" | while read -r line; do
pr_id=$(echo "$line" | sed -E 's/.*#([0-9]+)\)$/\1/')
if has_label 'paritytech/substrate' "$pr_id" 'B2-breaksapi'; then
boldprint "Substrate change labelled with B2-breaksapi. Labelling..."
github_label "B2-breaksapi"
if has_label 'paritytech/substrate' "$pr_id" 'D2-breaksapi'; then
boldprint "Substrate change labelled with D2-breaksapi. Labelling..."
github_label "D2-breaksapi"
exit 1
fi
done
@@ -149,7 +149,7 @@ do
| grep -q -e '^runtime/'
then
# add label breaksapi only if this pr altered the runtime sources
github_label "B2-breaksapi"
github_label "D2-breaksapi"
fi
boldcat <<-EOT