Skip to content

Commit

Permalink
Rotate the size chart (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli authored Jan 19, 2025
1 parent 237c1e0 commit 667877a
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,20 @@ jobs:
echo 'EOF' >> $GITHUB_OUTPUT
cat out.txt
#########################
# Intended Layout:
#
# | | This PR | Main |
# | Dev | x1 | y1 |
# | Prod | x2 | y2 |
#
#########################
- uses: mshick/add-pr-comment@v2
with:
message: |
<table><thead><tr><th></th><th>Dev</th><th>Prod</th></tr></thead>
<table><thead><tr><th></th><th>This PR</th><th>main</th></tr></thead>
<tbody>
<tr><td>This PR</td><td>
<tr><td>Dev</td><td>
```
${{ steps.dev.outputs.sizes }}
Expand All @@ -125,14 +133,14 @@ jobs:
</td><td>
```
${{ steps.prod.outputs.sizes }}
${{ steps.main-dev.outputs.sizes }}
```
</td></tr>
<tr><td>Main</td><td>
<tr><td>Prod</td><td>
```
${{ steps.main-dev.outputs.sizes }}
${{ steps.prod.outputs.sizes }}
```
</td><td>
Expand Down

0 comments on commit 667877a

Please sign in to comment.