From 64fb8ee44c4d470bd80a441cd47f4456f2a84e46 Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Mon, 30 Sep 2024 18:35:53 +0000 Subject: [PATCH] Add step to echo pull request details in GitHub Actions workflow --- .github/workflows/genai-investigator.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/genai-investigator.yml b/.github/workflows/genai-investigator.yml index 23f26f9722..f28cc257bd 100644 --- a/.github/workflows/genai-investigator.yml +++ b/.github/workflows/genai-investigator.yml @@ -18,6 +18,8 @@ jobs: if: ${{ github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.event == 'pull_request' }} runs-on: ubuntu-latest steps: + - name: Echo pull requests + run: echo ${{ toJson(github.event.workflow_run.pull_requests) }} - uses: actions/checkout@v4 with: submodules: "recursive"