We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4041a5e commit 35b6dccCopy full SHA for 35b6dcc
1 file changed
.github/tas-check/1-get-build-url.sh
@@ -9,10 +9,10 @@ get_build_id() {
9
| jq -r ".value | map(select(.sourceVersion == \"${1}\")) | .[].id"
10
}
11
12
-BUILD_ID=`get_build_id`
+BUILD_ID=`get_build_id "$1"`
13
while [ "${BUILD_ID}" == "" ]; do
14
sleep 60
15
- BUILD_ID=`get_build_id`
+ BUILD_ID=`get_build_id "$1"`
16
done
17
18
mkdir /tmp/everest-pr-tas-check
0 commit comments