2021-06-09 15:15:29 +00:00
|
|
|
name: Format README.md
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
sync-assets:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-11-02 19:44:08 +00:00
|
|
|
- uses: actions/checkout@v2.4.0
|
2021-06-09 15:15:29 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Run test
|
2022-01-03 02:56:06 +00:00
|
|
|
uses: tj-actions/remark@v2.1
|
2021-06-09 15:15:29 +00:00
|
|
|
|
|
|
|
- name: Verify Changed files
|
2021-10-05 00:38:20 +00:00
|
|
|
uses: tj-actions/verify-changed-files@v8
|
2021-06-09 15:15:29 +00:00
|
|
|
id: verify_changed_files
|
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
README.md
|
2021-09-04 13:31:19 +00:00
|
|
|
|
2021-06-09 15:15:29 +00:00
|
|
|
- name: README.md changed
|
|
|
|
if: steps.verify_changed_files.outputs.files_changed == 'true'
|
|
|
|
run: |
|
|
|
|
echo "README.md has uncommited changes"
|
|
|
|
exit 1
|
2021-09-04 13:31:19 +00:00
|
|
|
|
2021-06-09 15:15:29 +00:00
|
|
|
- name: Create Pull Request
|
|
|
|
if: failure()
|
|
|
|
uses: peter-evans/create-pull-request@v3
|
|
|
|
with:
|
|
|
|
base: "main"
|
|
|
|
title: "Updated README.md"
|
|
|
|
branch: "chore/update-readme"
|
|
|
|
commit-message: "Updated README.md"
|
|
|
|
body: "Updated README.md"
|
|
|
|
token: ${{ secrets.PAT_TOKEN }}
|