From 84abfdf84ab84362a42909bb197025b8e27747d5 Mon Sep 17 00:00:00 2001 From: Paul Date: Mon, 9 Dec 2024 09:36:58 -0600 Subject: [PATCH] ci: add missing tests to all-green dependency array (#9825) Adds the missing tests to the `needs:` dependency array for `all-green` step in CI so that all-green doesn't pass if these tests fail or are in progress ``` - build-templates - tests-types - tests-type-generation ``` --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 186e98a8b08..45bcf08f1da 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -492,9 +492,12 @@ jobs: needs: - lint - build + - build-templates - tests-unit - tests-int - tests-e2e + - tests-types + - tests-type-generation steps: - if: ${{ always() && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) }}