FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
agent-framework/.github/workflows/markdown-link-check.yml at main · alliscode/agent-framework · GitHub
alliscode
/
agent-framework
Public
forked from
microsoft/agent-framework
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
agent-framework
/
.github
/
workflows
/
markdown-link-check.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
41 lines (35 loc) · 1.04 KB
Breadcrumbs
agent-framework
/
.github
/
workflows
/
markdown-link-check.yml
Copy path
File metadata and controls
41 lines (35 loc) · 1.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
41
name
:
Check .md links
on
:
workflow_dispatch
:
pull_request
:
branches
:
["main"]
paths
:
-
'
**.md
'
-
'
.github/workflows/markdown-link-check.yml
'
-
'
.github/.linkspector.yml
'
schedule
:
-
cron
:
"
0 0 * * *
"
#
Run at midnight UTC daily
permissions
:
contents
:
read
jobs
:
markdown-link-check
:
runs-on
:
ubuntu-22.04
#
check out the latest version of the code
steps
:
-
uses
:
actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
#
v6
with
:
persist-credentials
:
false
-
name
:
Set up Node.js
uses
:
actions/setup-node@v4
with
:
node-version
:
20
-
name
:
Install Chrome for Puppeteer
run
:
npx puppeteer browsers install chrome
#
Checks the status of hyperlinks in all files
-
name
:
Run linkspector
uses
:
umbrelladocs/action-linkspector@963b6264d7de32c904942a70b488d3407453049e
#
v1
with
:
reporter
:
local
filter_mode
:
nofilter
fail_on_error
:
true
config_file
:
"
.github/.linkspector.yml
"
Back
|
FazBrowse Home
|
New Git URL