Skip to content

build(deps): bump github/codeql-action from 3 to 4 (#433) #493

build(deps): bump github/codeql-action from 3 to 4 (#433)

build(deps): bump github/codeql-action from 3 to 4 (#433) #493

Workflow file for this run

name: Format README.md
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
sync-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
with:
fetch-depth: 0
- name: Run auto-doc
uses: tj-actions/auto-doc@v3
with:
use_code_blocks: true
use_major_version: true
use_tag_commit_hash: true
- 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 uncommitted changes"
exit 1
- name: Create Pull Request
if: failure()
uses: peter-evans/create-pull-request@v7
with:
base: "main"
labels: "merge when passing"
title: "Updated README.md"
branch: "chore/update-readme"
commit-message: "Updated README.md"
body: "Updated README.md"
sign-commits: true
token: ${{ secrets.GITHUB_TOKEN }}