Skip to content

Update .pre-commit-config.yaml #443

Update .pre-commit-config.yaml

Update .pre-commit-config.yaml #443

name: Sync doc assets
on:
push:
branches:
- main
jobs:
sync-doc-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.2
with:
fetch-depth: 0
- name: Run test
uses: tj-actions/remark@v3
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v12
id: verify_changed_files
with:
files: |
README.md
- name: README.md changed
if: steps.verify_changed_files.outputs.files_changed == 'true'
run: |
echo "README.md has uncommited changes"
exit 1
- name: Create Pull Request
if: failure()
uses: peter-evans/create-pull-request@v4
with:
base: "main"
title: "Updated README.md"
branch: "chore/update-readme"
commit-message: "Updated README.md"
body: "Updated README.md"
token: ${{ secrets.PAT_TOKEN }}
- name: Copy doc assets
run: |
sed 's|./docs/images|./images|g' README.md > docs/README.md
cp -f CHANGELOG.md docs/CHANGELOG.md
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10.x'
- name: Upgrade pip
run: |
pip install -U pip
- name: Install dependencies
run: make install-docs
- name: Deploy to github pages
run: |
make github-pages