Skip to content

Commit

Permalink
server: fix testmerge worker action 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizzonium committed Jul 28, 2024
1 parent dddd858 commit 4f6163b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/testmerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ jobs:
exit 1
fi
for PR_DETAIL in $PR_DETAILS; do
echo '$PR_DETAIL'
PR_NUMBER=$(echo $PR_DETAIL | jq -r '.number')
PR_TITLE=$(echo $PR_DETAIL | jq -r '.title')
$PR_DETAILS | while read -r PR_DETAIL; do
echo "$PR_DETAIL"
PR_NUMBER=$(echo "$PR_DETAIL" | jq -r '.number')
PR_TITLE=$(echo "$PR_DETAIL" | jq -r '.title')
echo "Preparing $PR_TITLE (#$PR_NUMBER)"
git fetch origin pull/$PR_NUMBER/head:pr-$PR_number
Expand Down

0 comments on commit 4f6163b

Please sign in to comment.