Skip to content

Commit

Permalink
fix echo
Browse files Browse the repository at this point in the history
  • Loading branch information
printSANO committed Oct 27, 2024
1 parent 9e24d77 commit 0db6da0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ jobs:
go-version: '1.23'
run: go version
- name: Show build number
run: echo "Build Number: ${{ github.run_number }}"
run: |
echo "Build Number: ${{ github.run_number }}"
- name: Show pull request number
if: ${{ github.event_name == 'pull_request' }}
run: echo "PR Number: ${{ github.event.pull_request.number }}"
run: |
echo "PR Number: ${{ github.event.pull_request.number }}"

0 comments on commit 0db6da0

Please sign in to comment.