mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-04-15 07:21:23 +00:00
* update: action runtime to node16 * chore: pin dependencies * fix: build error with new TS version * add: editorconfig * chore: update all actions used in workflows * update: readme action sample versions * chore: bump developer dependencies * chore: bump developer dependencies * fix: eslint issues * fix: broken buildah copy logic * chore: address review feedback version bump
20 lines
409 B
YAML
20 lines
409 B
YAML
name: Link checker
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.md'
|
|
pull_request:
|
|
paths:
|
|
- '**.md'
|
|
schedule:
|
|
- cron: '0 0 * * *' # every day at midnight
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
name: Check links in markdown
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
with:
|
|
use-verbose-mode: true
|