Skip to content

Commit ec2793d

Browse files
authored
fix: make capybara summary "Last updated" line just small, not sub-sup (#2039)
### Briefly, what does this PR introduce? This PR updates the teeny tiny text <sub><sup>Last updated</sup></sub> in the capybara summary comment to be just small: <small>Last updated</small>. My eyes will thank me. Note: It doesn't seem like GitHub's style currently makes small any smaller than normal text. But it is semantically sensible and even at normal font it's actually fine. Anything but the squinting text. ### What kind of change does this PR introduce? - [x] Bug fix (issue 👀) - [ ] New feature (issue #__) - [ ] Documentation update - [ ] Other: __ ### Please check if this PR fulfills the following: - [ ] Tests for the changes have been added - [ ] Documentation has been added / updated - [ ] Changes have been communicated to collaborators ### Does this PR introduce breaking changes? What changes might users need to make to their code? No. ### Does this PR change default behavior? No.
1 parent 8583004 commit ec2793d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/linux-eic-shell.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1265,7 +1265,8 @@ jobs:
12651265
echo "### Capybara summary for PR ${{ github.event.pull_request.number }}" >> capybara_${{ github.event.pull_request.number }}.md
12661266
find publishing_docs/pr/${{ github.event.pull_request.number }}/capybara/ -mindepth 1 -maxdepth 1 -type d -printf \
12671267
"- [%f](https://eicrecon.epic-eic.org/pr/${{ github.event.pull_request.number }}/capybara/%f/index.html)\n" | sort >> capybara_${{ github.event.pull_request.number }}.md
1268-
echo "<sup><sub>Last updated $(TZ=America/New_York date -Iminutes) ${{github.event.pull_request.head.sha}}</sub></sup>" >> capybara_${{ github.event.pull_request.number }}.md
1268+
echo >> capybara_${{ github.event.pull_request.number }}.md
1269+
echo "<small>Last updated $(TZ=America/New_York date -Iminutes) ${{github.event.pull_request.head.sha}}</small>" >> capybara_${{ github.event.pull_request.number }}.md
12691270
- name: Create capybara step summary
12701271
if: ${{ github.event_name == 'pull_request' }}
12711272
run: |

0 commit comments

Comments
 (0)