From a19e0bf9220670d43cb08840818f2e8f8c130e59 Mon Sep 17 00:00:00 2001 From: htom Date: Wed, 5 Nov 2025 13:30:58 +0100 Subject: [PATCH] Workflow: added missing repository checkout Repository checkout was missing from the dispatch workflow --- .github/workflows/dispatcher.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/dispatcher.yml b/.github/workflows/dispatcher.yml index 10e64fd..61ccc0f 100644 --- a/.github/workflows/dispatcher.yml +++ b/.github/workflows/dispatcher.yml @@ -5,6 +5,9 @@ on: branches: - '**' # minden branchre lefut +permissions: + contents: write + jobs: detect-and-dispatch: runs-on: self-hosted # (sajat rpi-on fusson) @@ -26,6 +29,10 @@ jobs: echo "project=unknown" >> $GITHUB_OUTPUT fi + + - name: Checkout repository + uses: actions/checkout@v4 + - name: Trigger Engine tests if: steps.detect.outputs.project == 'Engine' uses: peter-evans/workflow-dispatch@v2