We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2044e5a commit af809efCopy full SHA for af809ef
.github/workflows/push.yml
@@ -305,8 +305,8 @@ jobs:
305
git push
306
- name: Show diff
307
if: github.event_name == 'pull_request'
308
- run: >-
309
- php benchmark/generate_diff.php
310
- ${{ github.event.pull_request.head.sha }}
311
- $(git merge-base ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }})
312
- > $GITHUB_STEP_SUMMARY
+ run: |-
+ php benchmark/generate_diff.php \
+ ${{ github.sha }} \
+ $(git merge-base ${{ github.event.pull_request.base.sha }} ${{ github.sha }}) \
+ > $GITHUB_STEP_SUMMARY
0 commit comments