From 6447f115063b10973401e9e1e23a621b6272608e Mon Sep 17 00:00:00 2001 From: fntyler <71953103+fntyler@users.noreply.github.com> Date: Thu, 7 May 2026 11:34:00 -0400 Subject: [PATCH] BRE-1869 feat(build-bitwarden-lite): repository dispatch input Add support for `repository_dispatch` payload input for `self_host_repos-ref`. * this is required for release-self-host worfklow --- .github/workflows/build-bitwarden-lite.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-bitwarden-lite.yml b/.github/workflows/build-bitwarden-lite.yml index f6aca994..a799e1a4 100644 --- a/.github/workflows/build-bitwarden-lite.yml +++ b/.github/workflows/build-bitwarden-lite.yml @@ -78,7 +78,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 with: - ref: ${{ inputs.self_host_repo_ref || github.ref }} + ref: ${{ inputs.self_host_repo_ref || github.event.client_payload.self_host_repo_ref || github.ref }} persist-credentials: false - name: Set Server variables @@ -137,7 +137,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 with: - ref: ${{ inputs.self_host_repo_ref || github.ref }} + ref: ${{ inputs.self_host_repo_ref || github.event.client_payload.self_host_repo_ref || github.ref }} persist-credentials: false - name: Check secrets