Skip to content

Commit

Permalink
Update changelog.yml (debug)
Browse files Browse the repository at this point in the history
  • Loading branch information
fariss authored Oct 22, 2024
1 parent 7266eb0 commit 9adb005
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,30 @@ permissions:
pull-requests: write

jobs:
debug_pr_info:
runs-on: ubuntu-latest
steps:
- name: Debug PR information
env:
PR_USER: ${{ github.event.pull_request.user.login }}
PR_AUTHOR: ${{ github.event.pull_request.user.login }}
ACTOR: ${{ github.actor }}
EVENT_NAME: ${{ github.event_name }}
REF: ${{ github.ref }}
PR_HEAD_REF: ${{ github.event.pull_request.head.ref }}
PR_BASE_REF: ${{ github.event.pull_request.base.ref }}
EVENT_CONTEXT: ${{ toJSON(github.event) }}
run: |
echo "PR User: $PR_USER"
echo "PR Author: $PR_AUTHOR"
echo "Actor: $ACTOR"
echo "Event Name: $EVENT_NAME"
echo "Ref: $REF"
echo "PR Head Ref: $PR_HEAD_REF"
echo "PR Base Ref: $PR_BASE_REF"
echo "Full Event Context:"
echo "$EVENT_CONTEXT"
check_changelog:
# no need to check for dependency updates via dependabot
if: |
Expand Down

0 comments on commit 9adb005

Please sign in to comment.