mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-24 00:23:51 +08:00
4b89c81519
Bumps [tj-actions/remark](https://github.com/tj-actions/remark) from 2.3 to 3. - [Release notes](https://github.com/tj-actions/remark/releases) - [Changelog](https://github.com/tj-actions/remark/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/remark/compare/v2.3...v3) --- updated-dependencies: - dependency-name: tj-actions/remark dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
960 B
YAML
40 lines
960 B
YAML
name: Format README.md
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
sync-assets:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.0.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Run test
|
|
uses: tj-actions/remark@v3
|
|
|
|
- name: Verify Changed files
|
|
uses: tj-actions/verify-changed-files@v9
|
|
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
|
|
with:
|
|
base: "main"
|
|
title: "Updated README.md"
|
|
branch: "chore/update-readme"
|
|
commit-message: "Updated README.md"
|
|
body: "Updated README.md"
|
|
token: ${{ secrets.PAT_TOKEN }}
|