Move prefer_related_applications
and related_applications
to mani…
#32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tidy document | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: | |
- main | |
paths: | |
- index.html | |
jobs: | |
tidy: | |
name: Tidy up | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: brew install tidy-html5 | |
- run: tidy -config tidyconfig.txt -o index.html index.html | |
- uses: peter-evans/create-pull-request@v6 | |
with: | |
title: "Tidied up document using tidy-html5" | |
commit-message: "chore: tidy up index.html" | |
branch: html-tidy |