From a275b55b564ea22f52d8164fc1bd17e2c98eeb2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Joga?= Date: Thu, 16 Apr 2026 12:32:43 +0000 Subject: [PATCH 1/4] Introducing linkspector to check broken links in docs --- .github/workflows/linkspector.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/linkspector.yml diff --git a/.github/workflows/linkspector.yml b/.github/workflows/linkspector.yml new file mode 100644 index 00000000..d9932b32 --- /dev/null +++ b/.github/workflows/linkspector.yml @@ -0,0 +1,15 @@ +# On pull request, this will check that links in the vicinity of the diff are not broken. +name: Linkspector +on: [pull_request] +jobs: + check-links: + name: runner / linkspector + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + - name: Run linkspector + uses: umbrelladocs/action-linkspector@v1 + with: + reporter: github-pr-review + filter_mode: nofilter # TODO: set to diff_context + fail_level: any \ No newline at end of file From 6f2e8813f25a0339eb95ec0d29924f40e39251ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Joga?= Date: Thu, 16 Apr 2026 12:35:39 +0000 Subject: [PATCH 2/4] Add change to see how the bad link will be reported --- HOWTO.md | 1 + 1 file changed, 1 insertion(+) diff --git a/HOWTO.md b/HOWTO.md index 35eaec6f..f01d3bd0 100644 --- a/HOWTO.md +++ b/HOWTO.md @@ -67,6 +67,7 @@ libretranslate ### Configuration: To enable LibreTranslate for chat translation, edit the LibreTranslate URL in the [./configs/core.cfg](./configs/core.cfg) file under the [Translation] section. +fdsfdsfds change test ``` [Translation] libretranslate = http://127.0.0.1:5000 From 8b3bbeedb5d8c9314ea9b713456b513a15727249 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Joga?= Date: Thu, 16 Apr 2026 12:36:24 +0000 Subject: [PATCH 3/4] disable other workflow --- .github/workflows/ail_framework_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ail_framework_test.yml b/.github/workflows/ail_framework_test.yml index b8185ceb..28dbefe5 100644 --- a/.github/workflows/ail_framework_test.yml +++ b/.github/workflows/ail_framework_test.yml @@ -6,9 +6,9 @@ name: CI on: # Triggers the workflow on push or pull request events but only for the master branch push: - branches: [ master, dev ] + branches: [ disabled ] pull_request: - branches: [ master, dev ] + branches: [ disabled] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: From 139a4708593d9d71ba057af50af23885636e3222 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Joga?= Date: Thu, 16 Apr 2026 12:39:34 +0000 Subject: [PATCH 4/4] Add change to see how the bad link will be reported --- .github/workflows/linkspector.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linkspector.yml b/.github/workflows/linkspector.yml index d9932b32..9dcee4fa 100644 --- a/.github/workflows/linkspector.yml +++ b/.github/workflows/linkspector.yml @@ -11,5 +11,5 @@ jobs: uses: umbrelladocs/action-linkspector@v1 with: reporter: github-pr-review - filter_mode: nofilter # TODO: set to diff_context + filter_mode: diff_context fail_level: any \ No newline at end of file