Skip to content

Commit

Permalink
fix(pipeline): fix PR number
Browse files Browse the repository at this point in the history
  • Loading branch information
RouHim committed Jan 17, 2023
1 parent 09fcee9 commit 49f0e25
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
- name: Set image tag
id: set_image_tag
run: |
echo github.event.number = ${{ github.event.number }}
echo github.event.pull_request.number = ${{ github.event.pull_request.number }}
echo github.event.issue.number = ${{ github.event.issue.number }}
PR_NUMBER=${{github.event.issue.number}}
if [ -z "$PR_NUMBER" ]; then
Expand Down

0 comments on commit 49f0e25

Please sign in to comment.