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:
parent
199a1bc681
commit
5faee1528a
29
.github/workflows/build.yml
vendored
29
.github/workflows/build.yml
vendored
@ -37,7 +37,9 @@ jobs:
|
|||||||
build-container:
|
build-container:
|
||||||
name: Build container images
|
name: Build container images
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
needs: lint
|
needs:
|
||||||
|
- check-run
|
||||||
|
- lint
|
||||||
permissions:
|
permissions:
|
||||||
id-token: write
|
id-token: write
|
||||||
security-events: write
|
security-events: write
|
||||||
@ -204,7 +206,9 @@ jobs:
|
|||||||
build-stub-swagger:
|
build-stub-swagger:
|
||||||
name: Build Docker-Stub/Swagger
|
name: Build Docker-Stub/Swagger
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
needs: build-container
|
needs:
|
||||||
|
- build-container
|
||||||
|
- check-run
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repo
|
- name: Check out repo
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||||
@ -385,7 +389,9 @@ jobs:
|
|||||||
build-mssqlmigratorutility:
|
build-mssqlmigratorutility:
|
||||||
name: Build MSSQL migrator utility
|
name: Build MSSQL migrator utility
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
needs: lint
|
needs:
|
||||||
|
- check-run
|
||||||
|
- lint
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
@ -445,7 +451,9 @@ jobs:
|
|||||||
github.event_name != 'pull_request_target'
|
github.event_name != 'pull_request_target'
|
||||||
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc')
|
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc')
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
needs: build-container
|
needs:
|
||||||
|
- build-container
|
||||||
|
- check-run
|
||||||
steps:
|
steps:
|
||||||
- name: Log in to Azure - CI subscription
|
- name: Log in to Azure - CI subscription
|
||||||
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
||||||
@ -478,7 +486,9 @@ jobs:
|
|||||||
name: Trigger k8s deploy
|
name: Trigger k8s deploy
|
||||||
if: github.event_name != 'pull_request_target' && github.ref == 'refs/heads/main'
|
if: github.event_name != 'pull_request_target' && github.ref == 'refs/heads/main'
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
needs: build-container
|
needs:
|
||||||
|
- build-container
|
||||||
|
- check-run
|
||||||
steps:
|
steps:
|
||||||
- name: Log in to Azure - CI subscription
|
- name: Log in to Azure - CI subscription
|
||||||
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
||||||
@ -514,7 +524,9 @@ jobs:
|
|||||||
github.event_name == 'pull_request_target'
|
github.event_name == 'pull_request_target'
|
||||||
&& contains(github.event.pull_request.labels.*.name, 'ephemeral-environment')
|
&& contains(github.event.pull_request.labels.*.name, 'ephemeral-environment')
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
needs: build-container
|
needs:
|
||||||
|
- build-container
|
||||||
|
- check-run
|
||||||
steps:
|
steps:
|
||||||
- name: Log in to Azure - CI subscription
|
- name: Log in to Azure - CI subscription
|
||||||
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
||||||
@ -545,7 +557,9 @@ jobs:
|
|||||||
|
|
||||||
trigger-ephemeral-environment-sync:
|
trigger-ephemeral-environment-sync:
|
||||||
name: Trigger Ephemeral Environment Sync
|
name: Trigger Ephemeral Environment Sync
|
||||||
needs: trigger-ee-updates
|
needs:
|
||||||
|
- check-run
|
||||||
|
- trigger-ee-updates
|
||||||
if: |
|
if: |
|
||||||
github.event_name == 'pull_request_target'
|
github.event_name == 'pull_request_target'
|
||||||
&& contains(github.event.pull_request.labels.*.name, 'ephemeral-environment')
|
&& contains(github.event.pull_request.labels.*.name, 'ephemeral-environment')
|
||||||
@ -567,6 +581,7 @@ jobs:
|
|||||||
- build-container
|
- build-container
|
||||||
- build-stub-swagger
|
- build-stub-swagger
|
||||||
- build-mssqlmigratorutility
|
- build-mssqlmigratorutility
|
||||||
|
- check-run
|
||||||
- self-host-build
|
- self-host-build
|
||||||
- trigger-k8s-deploy
|
- trigger-k8s-deploy
|
||||||
- trigger-ee-updates
|
- trigger-ee-updates
|
||||||
|
Loading…
x
Reference in New Issue
Block a user