Debug PR event payload

Issue gh-14484
This commit is contained in:
Marcus Hert Da Coregio 2024-07-08 11:08:36 -03:00
parent 05256da801
commit 65c037853e

View File

@ -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]'