Skip to content

Commit

Permalink
server: Updated testmerge workflow (#6127)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladisvell authored Nov 4, 2024
1 parent a308063 commit 0c0377f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/testmerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,15 @@ jobs:
git commit -m "Automatic changelog generation"
fi
# Generate TGUI bundle
./tgui/bin/tgui
CHANGES=$(git diff --name-only --cached | wc -l)
if [ "$CHANGES" -gt 0 ] ; then
git config --local user.email "[email protected]"
git config --local user.name "TGUI bundle Generation"
git commit -m "Testmerge TGUI bundle build generation"
fi
git push -f origin ${{ env.TESTMERGE_BRANCH }}
# Output the list of merged PRs
Expand Down

0 comments on commit 0c0377f

Please sign in to comment.