Skip to content

Commit

Permalink
Merge pull request from GHSA-7x29-qqmq-v6qc
Browse files Browse the repository at this point in the history
  • Loading branch information
AdnaneKhan authored Jun 30, 2024
1 parent af42cbd commit 8069e0a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,20 @@ runs:
using: "composite"
steps:
- name: Print Action Information
env:
PR_HEAD_REF: ${{ github.event.pull_request.head.ref }}
HEAD_REF: ${{ github.head_ref }}
REF: ${{ github.ref }}
run: |
echo "github.event_name: ${{ github.event_name }}" # i.e. "pull_request"
echo "github.event.action: ${{ github.event.action }}" # i.e. "opened" or "closed"
echo "github.repository: ${{ github.repository }}"
echo "github.event.pull_request.number: ${{ github.event.pull_request.number }}"
echo "github.event.pull_request.head.repo.full_name: ${{ github.event.pull_request.head.repo.full_name }}"
echo "github.actor: ${{ github.actor }}"
echo "github.event.pull_request.head.ref: ${{ github.event.pull_request.head.ref }}"
echo "github.ref: ${{ github.ref }}"
echo "github.head_ref: ${{ github.head_ref }}"
echo "github.event.pull_request.head.ref: $PR_HEAD_REF"
echo "github.ref: $REF"
echo "github.head_ref: $HEAD_REF"
echo "github.base_ref: ${{ github.base_ref }}"
shell: bash

Expand Down

0 comments on commit 8069e0a

Please # to comment.