From 65c037853e9ceef72687aa99f029e5dd715adcf5 Mon Sep 17 00:00:00 2001 From: Marcus Hert Da Coregio Date: Mon, 8 Jul 2024 11:08:36 -0300 Subject: [PATCH] Debug PR event payload Issue gh-14484 --- .github/workflows/mark-duplicate-dependabot-prs.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/mark-duplicate-dependabot-prs.yml b/.github/workflows/mark-duplicate-dependabot-prs.yml index 8dcb5ffd19..95d1417612 100644 --- a/.github/workflows/mark-duplicate-dependabot-prs.yml +++ b/.github/workflows/mark-duplicate-dependabot-prs.yml @@ -5,6 +5,14 @@ on: types: [closed] jobs: + debug: + runs-on: ubuntu-latest + steps: + - name: Debug Event Payload + run: | + echo "Merged: ${{ github.event.pull_request.merged }}" + echo "User Login: ${{ github.event.pull_request.user.login }}" + check_duplicate_prs: runs-on: ubuntu-latest if: github.event.pull_request.merged == 'true' && github.event.pull_request.user.login == 'dependabot[bot]'