瀏覽代碼

Fix github action "performance-8.0" when PR is from a fork.

There is an assumption that the PR is from the same remote as
the base it is being merged into. This is fixed so that instead
of doing a `git fetch origin`, it now fetches from the `clone_url`
of the PR head.

Signed-off-by: Peter Serwylo <peter@serwylo.com>
tags/v26.0.0beta1
Peter Serwylo 1 年之前
父節點
當前提交
56aee55f9b
共有 1 個檔案被更改,包括 3 行新增2 行删除
  1. 3
    2
      .github/workflows/performance.yml

+ 3
- 2
.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

Loading…
取消
儲存