Skip to content

Commit

Permalink
Create update-readme.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Oct 24, 2022
1 parent 270eb8b commit ab29640
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/update-readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Format README.md

on:
push:
branches:
- main

jobs:
sync-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
with:
fetch-depth: 0

- name: Run test
uses: tj-actions/remark@v3

- name: Verify Changed files
uses: tj-actions/verify-changed-files@v12
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@v4.2.0
with:
base: "main"
title: "Updated README.md"
branch: "chore/update-readme"
commit-message: "Updated README.md"
body: "Updated README.md"
token: ${{ secrets.PAT_TOKEN }}

0 comments on commit ab29640

Please sign in to comment.