Skip to content

Rename image to what is used in markdown #5

Rename image to what is used in markdown

Rename image to what is used in markdown #5

Workflow file for this run

name: Prettify markdown
on:
pull_request:
jobs:
dispatch:
name: commit fixes
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Prettify markdown files
uses: creyD/[email protected]
with:
prettier_options: "--write **/*.md"
commit_message: "Prettify markdown formatting"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}