From 5faee1528ad5b3842d90b0f5b36b6bd4817dd58a Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Wed, 19 Mar 2025 13:28:47 -0400 Subject: [PATCH] Add check-run job to each other job --- .github/workflows/build.yml | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 285f1f221f..8185b42e7f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,9 @@ jobs: build-container: name: Build container images runs-on: ubuntu-24.04 - needs: lint + needs: + - check-run + - lint permissions: id-token: write security-events: write @@ -204,7 +206,9 @@ jobs: build-stub-swagger: name: Build Docker-Stub/Swagger runs-on: ubuntu-24.04 - needs: build-container + needs: + - build-container + - check-run steps: - name: Check out repo uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 @@ -385,7 +389,9 @@ jobs: build-mssqlmigratorutility: name: Build MSSQL migrator utility runs-on: ubuntu-24.04 - needs: lint + needs: + - check-run + - lint defaults: run: shell: bash @@ -445,7 +451,9 @@ jobs: github.event_name != 'pull_request_target' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc') runs-on: ubuntu-24.04 - needs: build-container + needs: + - build-container + - check-run steps: - name: Log in to Azure - CI subscription uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0 @@ -478,7 +486,9 @@ jobs: name: Trigger k8s deploy if: github.event_name != 'pull_request_target' && github.ref == 'refs/heads/main' runs-on: ubuntu-24.04 - needs: build-container + needs: + - build-container + - check-run steps: - name: Log in to Azure - CI subscription uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0 @@ -514,7 +524,9 @@ jobs: github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'ephemeral-environment') runs-on: ubuntu-24.04 - needs: build-container + needs: + - build-container + - check-run steps: - name: Log in to Azure - CI subscription uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0 @@ -545,7 +557,9 @@ jobs: trigger-ephemeral-environment-sync: name: Trigger Ephemeral Environment Sync - needs: trigger-ee-updates + needs: + - check-run + - trigger-ee-updates if: | github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'ephemeral-environment') @@ -567,6 +581,7 @@ jobs: - build-container - build-stub-swagger - build-mssqlmigratorutility + - check-run - self-host-build - trigger-k8s-deploy - trigger-ee-updates