File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,19 +46,19 @@ jobs:
46
46
wait-interval : 30
47
47
check-regexp : ' ^Arduino [0-9]+ on ubuntu-latest$'
48
48
49
- - name : Get workflow id
49
+ - name : Get compilation workflow ID
50
50
id : save-workflow-id
51
51
run : |
52
52
RUNID=$(gh api repos/${{ github.repository }}/commits/${{ github.event.pull_request.head.sha }}/check-runs | \
53
53
jq -r '.check_runs[] | \
54
- select(.name == "Arduino 0 on ubuntu-latest") | |
54
+ select(.name == "Arduino 0 on ubuntu-latest") | \
55
55
.html_url | \
56
56
capture("/runs/(?<number>[0-9]+)/job") | \
57
57
.number' | \
58
58
sed 's/"//g' | \
59
59
head -n 1)
60
60
echo "RUNID=$RUNID" >> $GITHUB_ENV
61
- echo "Workflow id : $RUNID"
61
+ echo "Arduino compilation workflow ID : $RUNID"
62
62
63
63
- name : Download compilation artifacts
64
64
uses : actions/download-artifact@v4
You can’t perform that action at this time.
0 commit comments