branch-names/.github/workflows/update-readme.yml
dependabot[bot] d582bca6ee Bump tj-actions/auto-doc from 1.7.1 to 1.7.2
Bumps [tj-actions/auto-doc](https://github.com/tj-actions/auto-doc) from 1.7.1 to 1.7.2.
- [Release notes](https://github.com/tj-actions/auto-doc/releases)
- [Changelog](https://github.com/tj-actions/auto-doc/blob/main/HISTORY.md)
- [Commits](https://github.com/tj-actions/auto-doc/compare/v1.7.1...v1.7.2)

---
updated-dependencies:
- dependency-name: tj-actions/auto-doc
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-02 05:04:22 -07:00

46 lines
1.1 KiB
YAML

name: Format README.md
on:
push:
branches:
- main
jobs:
sync-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.2.0
with:
fetch-depth: 0
- name: Run auto-doc
uses: tj-actions/auto-doc@v1.7.2
- name: Run test
uses: tj-actions/remark@v3
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v13
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@v4.2.3
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 }}