From e7d510b2eae07f9ea75b3631c9c8bc2d5531ce9f Mon Sep 17 00:00:00 2001 From: Mustapha Barki Date: Tue, 3 Feb 2026 19:23:48 +0000 Subject: [PATCH 1/2] docs: add @aka-1976 to README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 79c0873..f178c80 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,5 @@ This is your README. READMEs are where you can communicate what your project is and how to use it. Write your name on line 6, save it, and then head back to GitHub Desktop. + +@aka-1976 From a34c31bb7617414470c7cd261e7d58c1a1c12731 Mon Sep 17 00:00:00 2001 From: Mustapha Barki Date: Tue, 3 Feb 2026 19:29:59 +0000 Subject: [PATCH 2/2] ci: add GitHub Actions workflow to check for broken links --- .github/workflows/link-checker.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/link-checker.yml diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml new file mode 100644 index 0000000..eaee8b6 --- /dev/null +++ b/.github/workflows/link-checker.yml @@ -0,0 +1,12 @@ +name: Link Checker +on: [push] + +jobs: + link-checker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Link Checker + uses: lycheeverse/lychee-action@v1.5.0 + with: + args: "*.md"