-
-
Notifications
You must be signed in to change notification settings - Fork 133
40 lines (35 loc) · 971 Bytes
/
Copy pathdocs.yml
File metadata and controls
40 lines (35 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: "Docs"
on: # yamllint disable-line rule:truthy
# pull_request:
# paths:
# - "**/*.md"
# - "markdown-link-check.json"
# push:
# branches:
# - "master"
# paths:
# - "**/*.md"
# - "markdown-link-check.json"
workflow_dispatch: null
# Add [skip ci] to commit message to skip CI.
permissions:
contents: "read"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
links:
name: "Links"
runs-on: "ubuntu-24.04"
timeout-minutes: 10
steps:
-
name: "Checkout repository"
uses: "actions/checkout@v5"
-
name: "Run Lychee"
uses: "lycheeverse/lychee-action@v2.6.1"
with:
output: "${{ runner.temp }}/lychee/out.md"
fail: true