Skip to content

Commit 0078f00

Browse files
committed
fix
1 parent 7a4e45d commit 0078f00

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/test_ya/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ runs:
296296
fi
297297
curl -L -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{github.token}}" -H "X-GitHub-Api-Version: 2022-11-28" \
298298
https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \
299-
-d '{"state":"'$teststatus'","description":"'$testmessage'","context":"test_${{inputs.build_preset}}"}'
299+
-d '{"state":"'$teststatus'","description":"'"$testmessage"'","context":"test_${{inputs.build_preset}}"}'
300300
301301
- name: sync test results to s3
302302
if: always()

.github/workflows/pr_check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,9 @@ jobs:
245245
jq -cr '.statuses | .[] | select(.state=="success") | select(.context | startswith("build_")) | .context' | \
246246
wc -l )
247247
if [[ $successbuilds == "3" ]];then
248-
integrated_status = "success"
248+
integrated_status="success"
249249
else
250-
integrated_status = "failure"
250+
integrated_status="failure"
251251
fi
252252
curl -L -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{github.token}}" -H "X-GitHub-Api-Version: 2022-11-28" \
253253
https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \

0 commit comments

Comments
 (0)