mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-18 09:44:46 +00:00
9d48b7acf4
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 3.12.0 to 3.12.1. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v3.12.0...v3.12.1) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
969 B
YAML
41 lines
969 B
YAML
name: Format README.md
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
sync-assets:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.4.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Run test
|
|
uses: tj-actions/remark@v2.3
|
|
|
|
- name: Verify Changed files
|
|
uses: tj-actions/verify-changed-files@v8
|
|
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@v3.12.1
|
|
with:
|
|
base: "main"
|
|
title: "Updated README.md"
|
|
branch: "chore/update-readme"
|
|
commit-message: "Updated README.md"
|
|
body: "Updated README.md"
|
|
token: ${{ secrets.PAT_TOKEN }}
|