Conflation of Pilot3 Issues #95, #135, #137, #138, and #139 per the discussion in the Issue #135 PR thread #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
**/*.yaml | |
**/*.yml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |