mirror of
https://github.com/terkelg/awesome-creative-coding.git
synced 2025-09-09 00:10:39 +02:00
20 lines
388 B
YAML
20 lines
388 B
YAML
name: Markdown Links Check
|
|
|
|
# runs every monday at 9 am
|
|
on:
|
|
# push:
|
|
# branches:
|
|
# - main
|
|
schedule:
|
|
- cron: "0 0 1 * *"
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
with:
|
|
use-quiet-mode: "yes"
|
|
use-verbose-mode: "yes"
|