Skip to content

Commit

Permalink
fixup pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrszacilowski committed Jul 17, 2024
1 parent ea69813 commit 22b6f28
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,17 @@ jobs:
- name: Log PR Info
run: |
if [ "${{ github.event_name }}" == "pull_request_review" ]; then
echo "PR Number: ${{ github.event.pull_request.number }}"
echo "Action: ${{ github.event.review.state }}"
echo "PR Number: ${{ github.event.pull_request.number }}"
echo "Action: ${{ github.event.review.state }}"
elif [ "${{ github.event_name }}" == "pull_request" ]; then
echo "PR Number: ${{ github.event.number }}"
echo "Action: ${{ github.event.action }}"
echo "PR Number: ${{ github.event.number }}"
echo "Action: ${{ github.event.action }}"
else
echo "Unhandled event type: ${{ github.event_name }}"
echo "Unhandled event type: ${{ github.event_name }}"
fi
- name: Debug Information
run: |
echo "Test var: ${{ secrets.TEST }}"
validate_and_notify:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 22b6f28

Please sign in to comment.