Skip to content

chore(doc): extend branch-restriction documentation example to show username usage #136

chore(doc): extend branch-restriction documentation example to show username usage

chore(doc): extend branch-restriction documentation example to show username usage #136

Workflow file for this run

name: Documentation Checks
on:
push:
branches:
- main
pull_request:
paths:
- .markdownlinkcheck.json
- .markdownlint.yml
- .github/workflows/documentation.yml
- .go-version
- docs/**
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
config-file: '.markdownlinkcheck.json'
folder-path: 'docs'
file-extension: '.md'
markdown-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: avto-dev/markdown-lint@v1
with:
config: '.markdownlint.yml'
args: 'docs'