Skip to content

Update README.md

Update README.md #31

Workflow file for this run

name: Check URLs 🔗
on:
push:
branches: [main]
pull_request:
branches: [main, devel]
jobs:
links:
name: Validate Links 🕸️
runs-on: ubuntu-latest
if: >
!contains(github.event.commits[0].message, '[skip links]')
steps:
- uses: actions/checkout@v3
- name: Check URLs in docs 📑
uses: lycheeverse/[email protected]
with:
fail: true
jobSummary: true
format: markdown
output: links-results.md
args: >-
--exclude-private
--exclude "https://github.com.*.git|lycheeverse.*"
--verbose
--no-progress
**/*.md
**/*.html
**/*.Rmd
**/*.yaml
**/*.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}