Skip to content

Commit

Permalink
server: improve testmerge worker 14
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizzonium committed Oct 6, 2024
1 parent f44fb5e commit a688079
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 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
MERGED_PRS=()
MERGED_PRS=""
# Print debug information
echo "PR details JSON:"
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
# Perform your git actions here, for example:
echo "::endgroup::"
echo "$(green "$PR_STRING: Successfully merged!")"
MERGED_PRS+=("$PR_NUMBER")
MERGED_PRS="$MERGED_PRS $PR_NUMBER"
done
# Generate changelog
Expand All @@ -155,8 +155,7 @@ jobs:
git push -f origin ${{ env.TESTMERGE_BRANCH }}
# Output the list of merged PRs
echo "${MERGED_PRS[@]}"
echo "merged_prs=${MERGED_PRS[@]}" >> $GITHUB_OUTPUT
echo "merged_prs=$MERGED_PRS}" >> $GITHUB_OUTPUT
- name: Comment on merged PRs
uses: actions/github-script@v7
Expand Down

0 comments on commit a688079

Please sign in to comment.