diff options
Diffstat (limited to '.github/workflows/performance.yml')
-rw-r--r-- | .github/workflows/performance.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index e5cbac5fe8f..b05390772cf 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -51,8 +51,9 @@ jobs: - name: Apply PR run: | - git fetch origin ${{ github.event.pull_request.head.ref }} - git checkout ${{ github.event.pull_request.head.ref }} + git remote add pr ${{ github.event.pull_request.head.repo.clone_url }} + git fetch pr ${{ github.event.pull_request.head.ref }} + git checkout -b pr/${{ github.event.pull_request.head.ref }} git submodule update ./occ upgrade |