8000 chore(deps): update github.com/suborbital/systemspec digest to 6e394c3 (#447) · suborbital/e2core@ea3f2dc · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

links

links #1052

Workflow file for this run

name: links
on:
pull_request:
schedule:
- cron: "0 12 * * 1"
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v1.8.0
with:
args: --verbose --no-progress -t 5 --exclude-mail --exclude=local.suborbital.network *.md docs/**/*.md
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0