Skip to content
This repository was archived by the owner on Nov 3, 2025. It is now read-only.

Commit 69519d3

Browse files
committed
Remove markdown link check
This CI job is incredibly flaky and provides little value. Remove it to reduce maintenance burden.
1 parent da5dc45 commit 69519d3

File tree

3 files changed

+0
-76
lines changed

3 files changed

+0
-76
lines changed

.github/markdown-link-check.json

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/markdown-link-check.yaml

Lines changed: 0 additions & 35 deletions
This file was deleted.

Rakefile

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,3 @@ namespace :fmt do
3535
end
3636

3737
Bundler::Audit::Task.new
38-
39-
namespace :release do
40-
link_check_files = FileList.new('**/*.md') do |f|
41-
f.exclude('node_modules/**/*')
42-
f.exclude('**/target/**/*')
43-
f.exclude('**/vendor/*/**/*')
44-
f.include('*.md')
45-
f.include('**/vendor/*.md')
46-
end
47-
48-
link_check_files.sort.uniq.each do |markdown|
49-
desc 'Check for broken links in markdown files'
50-
task markdown_link_check: markdown do
51-
command = ['npx', 'markdown-link-check', '--config', '.github/markdown-link-check.json', markdown]
52-
sh command.shelljoin
53-
sleep(rand(1..5))
54-
end
55-
end
56-
end

0 commit comments

Comments
 (0)