mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-05 17:45:31 -05:00
b92b3772ca
* remove access manager from code base * document new node ssh workflow * keep config backwards compatible * slow down link checking to prevent http 429 Signed-off-by: Fabian Kammel <fk@edgeless.systems>
33 lines
723 B
YAML
33 lines
723 B
YAML
name: Links
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- "release/**"
|
|
paths:
|
|
- "**.md"
|
|
- "**.html"
|
|
pull_request:
|
|
paths:
|
|
- "**.md"
|
|
- "**.html"
|
|
|
|
jobs:
|
|
linkChecker:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
|
|
- name: Link Checker
|
|
uses: lycheeverse/lychee-action@4dcb8bee2a0a4531cba1a1f392c54e8375d6dd81 # v1.5.4
|
|
with:
|
|
args: "--verbose --no-progress --max-concurrency 5 './**/*.md' './**/*.html'"
|
|
fail: true
|
|
env:
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|