1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Add check-run job to each other job

This commit is contained in:
Vince Grassia 2025-03-19 13:28:47 -04:00
parent 199a1bc681
commit 5faee1528a
No known key found for this signature in database
GPG Key ID: 9AD7505E8448CC08

View File

@ -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