mirror of
https://github.com/curl/curl.git
synced 2024-12-15 06:40:09 +08:00
24 lines
466 B
YAML
24 lines
466 B
YAML
|
# Docs: https://github.com/marketplace/actions/markdown-link-check
|
||
|
|
||
|
name: Markdown links
|
||
|
|
||
|
on:
|
||
|
# Trigger the workflow on push or pull requests, but only for the
|
||
|
# master branch
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
- '*/ci'
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
||
|
with:
|
||
|
use-quiet-mode: 'yes'
|