From 5c57ffa930f924e228609387b2ffd2799bdfeb10 Mon Sep 17 00:00:00 2001 From: appel_c Date: Wed, 25 Jun 2025 11:29:50 +0200 Subject: [PATCH] ci(plugin): add plugin repository test to BW ci --- .github/workflows/ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09b56c63..693a3a54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,4 +66,15 @@ jobs: with: BEC_CORE_BRANCH: ${{ inputs.BEC_CORE_BRANCH || 'main' }} OPHYD_DEVICES_BRANCH: ${{ inputs.OPHYD_DEVICES_BRANCH || 'main'}} - BEC_WIDGETS_BRANCH: ${{ inputs.BEC_WIDGETS_BRANCH || github.head_ref || github.sha }} \ No newline at end of file + BEC_WIDGETS_BRANCH: ${{ inputs.BEC_WIDGETS_BRANCH || github.head_ref || github.sha }} + + plugin_repos: + needs: [check_pr_status, formatter] + if: needs.check_pr_status.outputs.branch-pr == '' + uses: bec-project/bec/.github/workflows/plugin_repos.yml@main + with: + BEC_CORE_BRANCH: ${{ inputs.BEC_CORE_BRANCH || 'main' }} + BEC_WIDGETS_BRANCH: ${{ inputs.BEC_WIDGETS_BRANCH || github.head_ref || github.sha }} + + secrets: + GH_READ_TOKEN: ${{ secrets.GH_READ_TOKEN }} \ No newline at end of file