23 lines
523 B
Plaintext
23 lines
523 B
Plaintext
name: Format Document
|
|
|
|
on:
|
|
push:
|
|
paths: ['*.md']
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
paths: ['*.md']
|
|
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-20.04
|
|
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Format
|
|
run: .github/format.py content/zh-cn
|
|
- uses: EndBug/add-and-commit@v7
|
|
with:
|
|
author_name: mtfwikibot
|
|
author_email: bot@mtf.wiki
|
|
message: 'ci: format docs'
|