branch-names/.github/workflows/update-readme.yml

49 lines
1.2 KiB
YAML
Raw Normal View History

2021-05-27 20:20:59 +08:00
name: Format README.md
on:
push:
branches:
- main
jobs:
sync-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
2021-05-27 20:20:59 +08:00
with:
fetch-depth: 0
2022-03-23 05:16:13 +08:00
- name: Run auto-doc
uses: tj-actions/auto-doc@v3
2023-12-02 19:30:16 +08:00
with:
use_code_blocks: true
use_major_version: true
2021-05-27 20:20:59 +08:00
- name: Run remark
uses: tj-actions/remark@v3
2021-05-27 20:20:59 +08:00
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v19
2021-05-27 20:20:59 +08:00
id: verify_changed_files
with:
files: |
README.md
2021-05-27 20:20:59 +08:00
- name: README.md changed
if: steps.verify_changed_files.outputs.files_changed == 'true'
run: |
echo "README.md has uncommitted changes"
2021-05-27 20:20:59 +08:00
exit 1
2021-05-27 20:20:59 +08:00
- name: Create Pull Request
if: failure()
uses: peter-evans/create-pull-request@v6
2021-05-27 20:20:59 +08:00
with:
base: "main"
labels: "merge when passing"
2021-05-27 20:20:59 +08:00
title: "Updated README.md"
branch: "chore/update-readme"
commit-message: "Updated README.md"
body: "Updated README.md"
token: ${{ secrets.PAT_TOKEN }}