Skip to content

Run release action only on the main branch, Fixes #9 #10

Run release action only on the main branch, Fixes #9

Run release action only on the main branch, Fixes #9 #10

Workflow file for this run

---
name: 'markdownlint'
on: # yamllint disable-line rule:truthy
pull_request:
branches: ['main']
workflow_dispatch: {}
jobs:
build:
name: 'markdownlint'
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@master'
- name: 'markdownlint'
uses: 'nosborn/[email protected]'
with:
files: '*.md'
config_file: '.markdownlint.yml'
dot: false
...