Skip to content

Commit

Permalink
More info
Browse files Browse the repository at this point in the history
  • Loading branch information
islas committed Dec 13, 2024
1 parent fc1a478 commit 0c6036d
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/entry_point.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,18 @@ jobs:
steps:
- name: Dispatch Regression Suite
run : |
echo "${{ github.event.pull_request.head.repo.fork }}"
echo "${{ github.event.pull_request.head.repo.full_name }}"
echo "${{ github.event.pull_request.head.repo.owner.name }}"
echo "${{ github.event.pull_request.head.repo.owner.id }}"
echo "${{ github.event.pull_request.head.repo.owner.url }}"
echo "${{ github.event.pull_request.head.repo.owner.repos_url }}"
echo "${{ github.event.pull_request.head.repo.owner }}"
# echo "${{ github.event.pull_request.head.repo.fork }}"
# echo "${{ github.event.pull_request.head.repo.full_name }}"
# echo "${{ github.event.pull_request.head.repo.owner.name }}"
# echo "${{ github.event.pull_request.head.repo.owner.id }}"
# echo "${{ github.event.pull_request.head.repo.owner.url }}"
# echo "${{ github.event.pull_request.head.repo.owner.repos_url }}"
# echo "${{ github.event.pull_request.head.repo.owner }}"
echo "${{ github.event_name == 'push' }"
echo "${{ github.event_name == 'push' && github.ref_name || github.event.pull_request.head.repo.full_name }}"
echo "${{ github.event_name == 'push' && github.ref_name || github.event.pull_request.head.repo.full_name == github.repository }}"
echo "${{ github.event_name == 'push' && github.ref_name || github.event.pull_request.head.repo.full_name == github.repository && github.event.pull_request.head.ref || github.event.pull_request.base.ref }}"
# curl -L \
# -X POST \
# -H "Accept: application/vnd.github+json" \
Expand All @@ -45,7 +50,7 @@ jobs:
# https://api.github.com/repos/${GITHUB_REPOSITORY}/actions/workflows/ci.yml/dispatches \
# --data-binary @- << EOF
# {
# "ref" : "${{ github.event_name == 'push' && github.ref_name || github.event.pull_request.base.ref }}",
# "ref" : "${{ github.event_name == 'push' && github.ref_name || github.event.pull_request.head.repo.full_name == github.repository && github.event.pull_request.head.ref || github.event.pull_request.base.ref }}",
# "inputs" :
# {
# "event_name" : "${{ github.event_name }}",
Expand Down

0 comments on commit 0c6036d

Please sign in to comment.