Skip to content

chore(deps): update actions/checkout action to v4.1.5 #224

chore(deps): update actions/checkout action to v4.1.5

chore(deps): update actions/checkout action to v4.1.5 #224

name: Sync doc assets.
on:
push:
branches:
- main
jobs:
sync-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run remark
uses: tj-actions/remark@v3
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v20
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@v6
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 README
run: |
cp -f README.md docs/README.md
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6.0.5
with:
commit-message: Synced README changes to docs
committer: github-actions[bot] <github-actions[bot]@users.noreply@github.com>
author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
branch: chore/update-docs
base: main
delete-branch: true
title: Updated docs
body: |
Updated docs
- Auto-generated by github-actions[bot]
assignees: jackton1
reviewers: jackton1