Skip to content

Commit

Permalink
server: improve testmerge worker 19
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizzonium committed Oct 6, 2024
1 parent 4d2d71e commit c0ff15a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testmerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
./tools/hooks/install.sh
./tgui/bin/tgui --install-git-hooks
declare -a MERGED_PRS
MERGED_PRS=()
# Print debug information
echo "PR details JSON:"
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
echo "::endgroup::"
echo "$(green "$PR_STRING: Successfully merged!")"
echo "$PR_NUMBER"
MERGED_PRS+=("$PR_NUMBER")
MERGED_PRS+=($(echo "$PR_NUMBER"))
done
# Generate changelog
Expand Down

0 comments on commit c0ff15a

Please sign in to comment.