Docs fixes

- Fix a few typos
- Remove mention of LGTM (service closed)
- Update Theme Color docs
- Fix a markdown link
- Remove unnecessary 'Table of Contents' from FAQ since we only have 2 questions
- Rename GitHub Action file extensions from .yaml to .yml for consistency
- Run Prettier
- Fix typo on CHANGELOG
This commit is contained in:
coliff
2023-12-05 18:07:59 +09:00
parent 2789ddbfee
commit e0689d1e8f
8 changed files with 24 additions and 34 deletions

View File

@@ -165,7 +165,7 @@ included in the project:
```
10. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/)
with a clear title and description.
with a clear title and description.
**IMPORTANT**: By submitting a patch, you agree to allow the project
owners to license your work under the terms of the [MIT License](LICENSE.txt).

View File

@@ -3,7 +3,7 @@ name: publish
on:
push:
tags:
- 'v*'
- "v*"
permissions:
contents: read
@@ -11,7 +11,7 @@ permissions:
jobs:
build:
permissions:
contents: write # for actions/create-release to create a release
contents: write # for actions/create-release to create a release
name: Upload Release Asset
runs-on: ubuntu-latest
steps:

View File

@@ -2,7 +2,7 @@ name: Push to template repository
on:
push:
branches: [ main ]
branches: [main]
permissions:
contents: read
@@ -25,20 +25,19 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
run: npm run build
- name: Pushes to another repository
uses: cpina/github-action-push-to-another-repository@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source-directory: 'dist'
destination-github-username: 'h5bp'
destination-repository-name: 'html5-boilerplate-template'
user-name: 'roblarsen'
source-directory: "dist"
destination-github-username: "h5bp"
destination-repository-name: "html5-boilerplate-template"
user-name: "roblarsen"
user-email: rob@htmlcssjavascript.com
commit-message: "The latest and greatest from HTML5 Boilerplate"