mirror of
https://github.com/Colin-XKL/Colinx-Blog.git
synced 2026-01-11 18:21:28 +08:00
Bumps [zentered/markdown-seo-check](https://github.com/zentered/markdown-seo-check) from 1.1.0 to 1.1.5. - [Release notes](https://github.com/zentered/markdown-seo-check/releases) - [Commits](https://github.com/zentered/markdown-seo-check/compare/v1.1.0...v1.1.5) --- updated-dependencies: - dependency-name: zentered/markdown-seo-check dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
506 B
YAML
23 lines
506 B
YAML
name: SEO check
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
seocheck:
|
|
name: Markdown SEO Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- name: Markdown SEO Check
|
|
uses: zentered/markdown-seo-check@v1.1.5
|
|
with:
|
|
max_title_length: 70
|
|
max_description_length: 150
|
|
max_slug_length: 100
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|