|
|
|
@ -28,7 +28,7 @@ jobs: |
|
|
|
|
uses: lewagon/wait-on-check-action@v1.3.4 |
|
|
|
|
with: |
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }} |
|
|
|
|
check-name: $UI_JOB_NAME |
|
|
|
|
check-name: ${{ env.UI_JOB_NAME }} |
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }} |
|
|
|
|
allowed-conclusions: success |
|
|
|
|
wait-interval: 20 |
|
|
|
@ -36,7 +36,7 @@ jobs: |
|
|
|
|
- name: Get workflow run ID |
|
|
|
|
id: get_run_id |
|
|
|
|
run: | |
|
|
|
|
echo "run_id=$(curl https://api.github.com/repos/${{ github.repository }}/commits/${{ github.event.pull_request.head.sha }}/check-runs | jq -r '.check_runs[] | select(.name == "$UI_JOB_NAME") | .html_url | capture("(?<number>[0-9]+)") | .number')" >> $GITHUB_OUTPUT |
|
|
|
|
echo "run_id=$(curl https://api.github.com/repos/${{ github.repository }}/commits/${{ github.event.pull_request.head.sha }}/check-runs | jq -r '.check_runs[] | select(.name == "${{ env.UI_JOB_NAME }}") | .html_url | capture("(?<number>[0-9]+)") | .number')" >> $GITHUB_OUTPUT |
|
|
|
|
|
|
|
|
|
- name: Checkout ci-artifacts |
|
|
|
|
uses: actions/checkout@v4 |
|
|
|
|