Skip to content

Commit

Permalink
Merge branch 'v3.8.5' of https://github.com/cocos/cocos-engine into 3…
Browse files Browse the repository at this point in the history
…85-gfx-copyTextureToTexture
  • Loading branch information
dumganhar committed Jul 2, 2024
2 parents f141514 + af38f8c commit d84e197
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/run_test_cases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ jobs:
details: ${{ steps.pr_details.outputs.data }}
last_update_date: ${{ github.event.comment.created_at || github.event.pull_request.updated_at }}
run: |
$pull_request = ConvertFrom-Json -InputObject "${{ env.details }}"
# Convert the JSON string to a PowerShell object
$pull_request = $env:details | ConvertFrom-Json
#$pull_request = ConvertFrom-Json -InputObject "${{ env.details }}"
# Extract data from the JSON object
$pr_html_url = $pull_request.html_url
$pr_author = $pull_request.user.login
$pr_head_ref = $pull_request.head.ref
Expand Down

0 comments on commit d84e197

Please sign in to comment.