From 1bc0c8fe0164c99b6eb8dde2e295d899e0dec6f9 Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Thu, 21 Aug 2025 19:42:22 +0200 Subject: [PATCH] Debug GitHub workflow: Log the pull request info from the workflow run triggering the ci-report Signed-off-by: marko-bekhta --- .github/workflows/ci-report.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-report.yml b/.github/workflows/ci-report.yml index 0b69fb35d..a12926050 100644 --- a/.github/workflows/ci-report.yml +++ b/.github/workflows/ci-report.yml @@ -29,6 +29,8 @@ jobs: - name: Determine the Branch Reference for which the original action was triggered id: determine_branch_ref run: | + echo '${{ toJSON(github.event.workflow_run.pull_requests) }}' + echo '${{ toJSON(github.event.workflow_run.event) }}' if [ -n "${{ github.event.workflow_run.pull_requests[0].base.ref }}" ]; then BRANCH_REF="${{ github.event.workflow_run.pull_requests[0].base.ref }}" else