Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Commit b4e97f7

Browse files
authored
Fix script to launch github action (#565)
1 parent 629744d commit b4e97f7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/dev/run_e2e_gh.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ current_branch="$(git branch --show-current)"
66

77
gh workflow run e2e-dispatch.yml -f "test-name=${test_name}" --ref "${current_branch}"
88

9-
run_id="$(gh run list --workflow=e2e-dispatch.yml | grep workflow_dispatch | grep -Eo "[0-9]+" | head -n 1)"
9+
echo "Waiting for task to start..."
10+
sleep 2
11+
12+
run_id="$(gh run list --workflow=e2e-dispatch.yml | grep workflow_dispatch | grep -Eo "[0-9]{9,11}" | head -n 1)"
1013

1114
gh run view "${run_id}" --web

0 commit comments

Comments
 (0)