ci(plugin-repo): Run workflow for plugin repositories

This commit is contained in:
2025-06-25 11:24:46 +02:00
committed by Christian Appel
parent be3efc8ce0
commit 295a5e0d97

View File

@ -13,6 +13,8 @@ on:
required: false
type: string
permissions:
pull-requests: write
@ -49,4 +51,15 @@ jobs:
uses: ./.github/workflows/child_repos.yml
with:
BEC_CORE_BRANCH: ${{ inputs.BEC_CORE_BRANCH || 'main' }}
OPHYD_DEVICES_BRANCH: ${{ inputs.OPHYD_DEVICES_BRANCH || github.head_ref || github.sha}}
OPHYD_DEVICES_BRANCH: ${{ inputs.OPHYD_DEVICES_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' }}
OPHYD_DEVICES_BRANCH: ${{ inputs.OPHYD_DEVICES_BRANCH || github.head_ref || github.sha}}
secrets:
GH_READ_TOKEN: ${{ secrets.GH_READ_TOKEN }}