We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eec4be6 commit f96b092Copy full SHA for f96b092
.github/workflows/ci_pipeline.yml
@@ -60,8 +60,11 @@ jobs:
60
echo "${{ github.event.pull_request.head.sha }}"
61
echo "${GITHUB_REF:11}"
62
echo "$(git symbolic-ref --short HEAD)"
63
+ echo "$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")"
64
+ pull_number=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
65
+ git fetch origin pull/$pull_number/head:pr_tmp
66
+ git checkout pr_tmp
67
-
68
- name: Checkout benchmark repository
69
uses: actions/checkout@v3
70
if: ${{ github.event_name == 'push' }}
0 commit comments