From 208245eeeec3895364b188a07aed2ac04a311fb3 Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Tue, 20 Feb 2024 12:26:04 +0100 Subject: [PATCH] added the same effect for migrations Let's unify everything at once --- .github/workflows/check-migrations.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/check-migrations.yml b/.github/workflows/check-migrations.yml index 11fa1fe9c5..8fb87cd71d 100644 --- a/.github/workflows/check-migrations.yml +++ b/.github/workflows/check-migrations.yml @@ -77,3 +77,11 @@ jobs: node-uri: ${{ matrix.runtime.uri }} checks: "pre-and-post" extra-args: ${{ env.EXTRA_ARGS }} + + confirmMigrationsPassed: + runs-on: ubuntu-latest + name: Confirms that all migrations passed + # If any new job gets added, be sure to add it to this list + needs: [check-migrations] + steps: + - run: echo '### Good job! All the migrations passed 🚀' >> $GITHUB_STEP_SUMMARY