Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ail_framework_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/linkspector.yml
Original file line number Diff line number Diff line change
@@ -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: diff_context
fail_level: any
1 change: 1 addition & 0 deletions HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [linkspector] reported by reviewdog 🐶
Cannot reach ./configs/core.cfg Status: 404 Cannot find: ./configs/core.cfg

fdsfdsfds change test
```
[Translation]
libretranslate = http://127.0.0.1:5000
Expand Down
Loading