Skip to content

Commit 10b14e5

Browse files
committed
Switch to lychee for link checks
1 parent 9644ad3 commit 10b14e5

4 files changed

Lines changed: 34 additions & 29 deletions

File tree

.github/workflows/CheckMarkdownLinks.yml

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

.github/workflows/check-links.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# https://github.com/lycheeverse/lychee-action
2+
# https://github.com/lycheeverse/lychee
3+
name: Check Links
4+
5+
on:
6+
push:
7+
schedule:
8+
# Run monthly
9+
# GitHub actions uses UTC for time zone
10+
# crontab format: minute hour day-of-month month day-of-week
11+
- cron: "34 4 4 * *"
12+
workflow_dispatch:
13+
inputs:
14+
message:
15+
description: Message to display in job summary
16+
required: false
17+
type: string
18+
override-args:
19+
description: Override default arguments (see https://github.com/lycheeverse/lychee#commandline-parameters)
20+
required: false
21+
type: string
22+
23+
jobs:
24+
link-checker:
25+
name: Call Link Checker
26+
uses: Andy4495/.github/.github/workflows/check-links.yml@main
27+
with:
28+
message: ${{ inputs.message }}
29+
override-args: ${{ inputs.override-args }}
30+
# Use the following to exclude certain URLs from the check. Need to include "--exclude" in the definition.
31+
# For example, --exclude '43oh.com'
32+
exclude:
33+

.github/workflows/mlc_config.json

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ParallelEEPROM Library
22

33
[![Arduino Compile Sketches](https://github.com/Andy4495/ParallelEEPROM/actions/workflows/arduino-compile-sketches.yml/badge.svg)](https://github.com/Andy4495/ParallelEEPROM/actions/workflows/arduino-compile-sketches.yml)
4-
[![Check Markdown Links](https://github.com/Andy4495/ParallelEEPROM/actions/workflows/CheckMarkdownLinks.yml/badge.svg)](https://github.com/Andy4495/ParallelEEPROM/actions/workflows/CheckMarkdownLinks.yml)
4+
[![Check Markdown Links](https://github.com/Andy4495/ParallelEEPROM/actions/workflows/check-links.yml/badge.svg)](https://github.com/Andy4495/ParallelEEPROM/actions/workflows/check-links.yml)
55

66
This is a parallel EEPROM programmer library. It currently supports 32Kx8 (28C256 and X28256) and 2Kx8 (28C16) EEPROMs. 32Kx8 and 2Kx8 chips with the same pinout as these devices have not been tested, but will probably work with this library. Other sizes may be supported in the future.
77

0 commit comments

Comments
 (0)