Skip to content

chore: bump remark-frontmatter from 4.0.1 to 5.0.0 #1383

chore: bump remark-frontmatter from 4.0.1 to 5.0.0

chore: bump remark-frontmatter from 4.0.1 to 5.0.0 #1383

Workflow file for this run

name: "Check Markdown Format"
on: [push, pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'yarn'
- run: yarn
- run: yarn lint
- name: Check diff
run: git diff --exit-code ${{ github.sha }}
- name: Create Pull Request
if: failure()
uses: peter-evans/create-pull-request@v5
with:
commit-message: "style: format Markdown files"
title: "style: format Markdown files for ${{ github.ref }}"
labels: "style"
assignees: "${{ github.actor }}"
reviewers: "${{ github.actor }}"
branch: 'auto-pr/remark-lint/${{ github.ref }}'