mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 18:08:55 +03:00
25990c3a9b
Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
31 lines
801 B
YAML
31 lines
801 B
YAML
on:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 9 * * *' # 9=9am utc+0
|
|
|
|
name: Check Markdown links
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
with:
|
|
use-quiet-mode: 'yes'
|
|
use-verbose-mode: 'yes'
|
|
base-branch: 'main'
|
|
check-modified-files-only: 'yes'
|
|
if: ${{ github.event_name == 'pull_request' }}
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
with:
|
|
use-quiet-mode: 'yes'
|
|
use-verbose-mode: 'yes'
|
|
base-branch: 'main'
|
|
check-modified-files-only: 'no'
|
|
if: ${{ github.event_name == 'schedule' }}
|