From 71bd119e7aea567a8d4f2583bf5058906f8b673f Mon Sep 17 00:00:00 2001 From: Diego Ximenes Date: Thu, 19 Dec 2024 16:25:43 -0300 Subject: [PATCH] Adds pre-bold as a nitro-contracts branch exception in submodule-pin-check --- .github/workflows/submodule-pin-check.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/submodule-pin-check.yml b/.github/workflows/submodule-pin-check.yml index 60dd8ad827..a3cfc3b4f0 100644 --- a/.github/workflows/submodule-pin-check.yml +++ b/.github/workflows/submodule-pin-check.yml @@ -26,8 +26,9 @@ jobs: status_state="pending" declare -Ar exceptions=( [contracts]=origin/develop + [contracts]=origin/pre-bold [nitro-testnode]=origin/master - + #TODO Rachel to check these are the intended branches. [arbitrator/langs/c]=origin/vm-storage-cache [arbitrator/tools/wasmer]=origin/adopt-v4.2.8 @@ -38,7 +39,7 @@ jobs: if [[ -v exceptions[$mod] ]]; then branch=${exceptions[$mod]} fi - + if ! git -C $mod merge-base --is-ancestor HEAD $branch; then echo $mod diverges from $branch divergent=1