Skip to content

chore(deps): update codecov/codecov-action action to v4.2.0 #857

chore(deps): update codecov/codecov-action action to v4.2.0

chore(deps): update codecov/codecov-action action to v4.2.0 #857

name: Sync doc assets
on:
push:
branches:
- main
jobs:
sync-doc-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- name: Run test
uses: tj-actions/remark@v3
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v19
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 uncommitted changes"
exit 1
- name: Create Pull Request
if: failure()
uses: peter-evans/create-pull-request@v6
with:
base: "main"
labels: merge when passing
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: |
cp -f README.md docs/README.md
cp -f CHANGELOG.md docs/CHANGELOG.md
cp -f *.png docs
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6.0.2
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
labels: merge when passing
base: main
delete-branch: true
title: Updated docs
body: |
Updated docs
- Auto-generated by github-actions[bot]
assignees: jackton1
reviewers: jackton1