Conversation
|
Hello @janosh. Do you think this would work? I can just close the PR once it passes the test. But when I tried to include the ref of PR 726, it gave the error:
Do you have any idea about such error? Thanks so much for your help! Cheers! |
|
I was thinking more along the lines of on:
push:
branches: [main]
pull_request:
branches: [main]
# new
workflow_dispatch:
pull_request:
description: Pull request against which to trigger CI. Must be 'pull/:id/head' with id replaced by the PRs number.
type: string
default: ''
- uses: actions/checkout@v2
# new
with:
ref: ${{ github.event.inputs.pull_request }}never tried this though so don't know if it works as intended. Also, @yang-ruoxi replied on #726 so perhaps we just wait for him to push there. |
Thanks @janosh for your help! A more straightforward way I can help to ruoxi is to just copy paste all her changed files into this PR, so that we are running the test using the new environment. If the test passes, I can close this PR and merge hers into the main branch. |
|
Or you could check out her PR locally by adding her fork as a local |
|
I see. It looks easier in that way! Thanks @janosh ! |
update test.yml with manual workflow_dispatch to import #726 for CI testing.