Skip to content

Commit 667877a

Browse files
Rotate the size chart (#1681)
1 parent 237c1e0 commit 667877a

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.github/workflows/size.yml

+13-5
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,20 @@ jobs:
111111
echo 'EOF' >> $GITHUB_OUTPUT
112112
cat out.txt
113113
114+
#########################
115+
# Intended Layout:
116+
#
117+
# | | This PR | Main |
118+
# | Dev | x1 | y1 |
119+
# | Prod | x2 | y2 |
120+
#
121+
#########################
114122
- uses: mshick/add-pr-comment@v2
115123
with:
116124
message: |
117-
<table><thead><tr><th></th><th>Dev</th><th>Prod</th></tr></thead>
125+
<table><thead><tr><th></th><th>This PR</th><th>main</th></tr></thead>
118126
<tbody>
119-
<tr><td>This PR</td><td>
127+
<tr><td>Dev</td><td>
120128
121129
```
122130
${{ steps.dev.outputs.sizes }}
@@ -125,14 +133,14 @@ jobs:
125133
</td><td>
126134
127135
```
128-
${{ steps.prod.outputs.sizes }}
136+
${{ steps.main-dev.outputs.sizes }}
129137
```
130138
131139
</td></tr>
132-
<tr><td>Main</td><td>
140+
<tr><td>Prod</td><td>
133141
134142
```
135-
${{ steps.main-dev.outputs.sizes }}
143+
${{ steps.prod.outputs.sizes }}
136144
```
137145
138146
</td><td>

0 commit comments

Comments
 (0)