-
Notifications
You must be signed in to change notification settings - Fork 81
Added link checker #3153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
mnocon
wants to merge
8
commits into
5.0
Choose a base branch
from
link-checker
base: 5.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Added link checker #3153
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
deb36e3
Added chcking links
mnocon ac2a7a4
Fixed links
mnocon 0dd5d5e
fixup! Fixed links
mnocon 511939e
fixup! Added chcking links
mnocon abf9a2c
fixup! Fixed links
mnocon b157707
fixup! Added chcking links
mnocon 3a1631d
fixup! Added chcking links
mnocon e6ffc02
fixup! Added chcking links
mnocon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,113 @@ | ||
| name: "Check documentation links" | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| - "[0-9]+.[0-9]+" | ||
| workflow_dispatch: | ||
| inputs: | ||
| force_recheck: | ||
| description: "Clear lychee cache and recheck all links from scratch" | ||
| type: boolean | ||
| default: false | ||
| devdoc_50_branch: | ||
| description: "ibexa/documentation-developer branch for 5.0" | ||
| type: string | ||
| default: "5.0" | ||
| devdoc_46_branch: | ||
| description: "ibexa/documentation-developer branch for 4.6" | ||
| type: string | ||
| default: "4.6" | ||
| userdoc_50_branch: | ||
| description: "ibexa/documentation-user branch for 5.0" | ||
| type: string | ||
| default: "5.0" | ||
| userdoc_46_branch: | ||
| description: "ibexa/documentation-user branch for 4.6" | ||
| type: string | ||
| default: "4.6" | ||
| connect_branch: | ||
| description: "ibexa/documentation-connect branch" | ||
| type: string | ||
| default: "main" | ||
| pull_request: ~ | ||
| schedule: | ||
| - cron: "0 6 * * *" | ||
|
|
||
| jobs: | ||
| link-check: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| python-version: [3.13] | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Generate token | ||
| id: generate_token | ||
| uses: actions/create-github-app-token@v2 | ||
| with: | ||
| app-id: ${{ secrets.AUTOMATION_CLIENT_ID }} | ||
| private-key: ${{ secrets.AUTOMATION_CLIENT_SECRET }} | ||
| owner: ${{ github.repository_owner }} | ||
|
|
||
| - name: Configure git credentials for private repositories | ||
| run: | | ||
| git config --global url."https://x-access-token:${{ steps.generate_token.outputs.token }}@github.com/ibexa/documentation-connect".insteadOf \ | ||
| "https://github.com/ibexa/documentation-connect" | ||
|
|
||
| - name: Set up Python ${{ matrix.python-version }} | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
|
|
||
| - name: Install MkDocs dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install -r requirements.txt | ||
|
|
||
| - name: Build documentation | ||
| run: mkdocs build --strict | ||
|
|
||
| - name: Clone and build versioned repositories for link remap | ||
| run: >- | ||
| bash tools/clone-repositories.sh | ||
| "${{ inputs.devdoc_50_branch || '5.0' }}" | ||
| "${{ inputs.devdoc_46_branch || '4.6' }}" | ||
| "${{ inputs.userdoc_50_branch || '5.0' }}" | ||
| "${{ inputs.userdoc_46_branch || '4.6' }}" | ||
| "${{ inputs.connect_branch || 'main' }}" | ||
|
|
||
| - name: Restore lychee cache | ||
| if: ${{ !inputs.force_recheck }} | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: .lycheecache | ||
| key: lychee-${{ github.ref_name }}-${{ hashFiles('lychee.toml') }} | ||
| restore-keys: | | ||
| lychee-${{ github.ref_name }}- | ||
| lychee- | ||
|
|
||
| - name: Check links | ||
| uses: lycheeverse/lychee-action@v2 | ||
| with: | ||
| args: >- | ||
| --config lychee.toml | ||
| --cache | ||
| --cache-exclude-status "400.." | ||
| site | ||
| output: lychee-report.md | ||
| jobSummary: false | ||
| fail: true | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Upload link-check report | ||
| if: always() | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: lychee-report | ||
| path: lychee-report.md | ||
| if-no-files-found: ignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,3 +12,7 @@ auth.json | |
| yarn.lock | ||
| docs/css/*.map | ||
| .deptrac.cache | ||
| .lycheecache | ||
| lychee.toml | ||
| /repositories/ | ||
| lychee-report.md | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,162 @@ | ||
| # URLs excluded from lychee link checking. | ||
| # Each line is a regular expression matched against the full URL. | ||
| # | ||
| # Add external URLs here when they produce false positives (redirects, bot-blocks, | ||
| # JS-rendered anchors, etc.). Structural file:// exclusions that depend on the | ||
| # build path live in lychee.toml.dist instead, as they require __BASE_DIR__ substitution. | ||
|
|
||
| # Localhost / loopback — not real content links | ||
| ^https?://localhost | ||
| ^https?://127\.0\.0\.1 | ||
|
|
||
| # Placeholder domain used in examples | ||
| ^https?://example\.com | ||
|
|
||
| # Known intentional redirects (302) | ||
| ^https://support\.ibexa\.co/ | ||
| ^https://redocly\.com/redoc/ | ||
| ^https://updates\.ibexa\.co | ||
| ^https://console\.cloud\.google\.com | ||
|
|
||
| # Hosts that block automated requests (403) | ||
| ^https?://(www\.)?linkedin\.com | ||
| ^https?://(www\.)?openai\.com | ||
| ^https?://help\.openai\.com | ||
| ^https?://(www\.)?paypal\.com | ||
| ^https://support\.qualifio\.com/ | ||
| ^https://unsplash\.com/ | ||
| https://support.deepl.com/hc/en-us/articles/360020695820-API-key-for-DeepL-API | ||
|
|
||
| # AI provider consoles — redirect to login pages (302/307) | ||
| https://aistudio\.google\.com/app/api-keys | ||
| https://console\.anthropic\.com/login | ||
| https://docs\.claude\.com/en/docs/about-claude/models/overview | ||
|
|
||
| # AWS console — redirects unauthenticated requests (302) | ||
| https://console\.aws\.amazon\.com/ | ||
|
|
||
| # EU legislation portal — fragment (#d1e...) is a JavaScript-rendered anchor | ||
| https://eur-lex\.europa\.eu/ | ||
|
|
||
| # GitHub release tag URLs with unresolved MkDocs macro (releases/tag/ with no version) | ||
| # These come from snippets using [[= version =]] which does not expand during link-check builds. | ||
| https://github\.com/ibexa/(commerce|experience|headless)/releases/tag/$ | ||
|
|
||
| # Webarchive links | ||
| https://web.archive.org/web/20140911035812/https://doc.ez.no/display/EZP/Legacy+code+and+features | ||
| https://web.archive.org/web/20150920231014/https://doc.ez.no/display/EZP/Upgrade | ||
| https://web.archive.org/web/20201015232625/https://ezsystems.github.io/ezplatform-rest-reference/ | ||
|
|
||
| # Doc links older than 4.6 | ||
| https://doc.ibexa.co/en/2.2/releases/updating_ez_platform/ | ||
| https://doc.ibexa.co/en/2.2/releases/updating_ez_platform/#migrate-landing-pages | ||
| https://doc.ibexa.co/en/2.5/api/field_types_reference/imageassetfield/ | ||
| https://doc.ibexa.co/en/2.5/api/field_types_reference/matrixfield/ | ||
| https://doc.ibexa.co/en/2.5/api/field_types_reference/richtextfield/ | ||
| https://doc.ibexa.co/en/2.5/api/graphql/ | ||
| https://doc.ibexa.co/en/2.5/api/public_php_api_browsing/#getting-content-from-a-location | ||
| https://doc.ibexa.co/en/2.5/api/public_php_api_browsing/#siteaccess-aware-repository | ||
| https://doc.ibexa.co/en/2.5/community_resources/translations/#how-to-translate-the-interface-using-crowdin | ||
| https://doc.ibexa.co/en/2.5/getting_started/install_ez_platform/ | ||
| https://doc.ibexa.co/en/2.5/getting_started/install_ez_platform/ | ||
| https://doc.ibexa.co/en/2.5/getting_started/install_ez_platform/ | ||
| https://doc.ibexa.co/en/2.5/getting_started/install_ez_platform/ | ||
| https://doc.ibexa.co/en/2.5/getting_started/requirements/ | ||
| https://doc.ibexa.co/en/2.5/getting_started/requirements/ | ||
| https://doc.ibexa.co/en/2.5/getting_started/requirements/ | ||
| https://doc.ibexa.co/en/2.5/getting_started/requirements/ | ||
| https://doc.ibexa.co/en/2.5/getting_started/requirements/ | ||
| https://doc.ibexa.co/en/2.5/guide/config_back_office/#content-tree | ||
| https://doc.ibexa.co/en/2.5/guide/config_repository/#user-identifiers | ||
| https://doc.ibexa.co/en/2.5/guide/content_management/#location-visibility | ||
| https://doc.ibexa.co/en/2.5/guide/databases/#using-postgresql | ||
| https://doc.ibexa.co/en/2.5/guide/design_engine/ | ||
| https://doc.ibexa.co/en/2.5/guide/design_engine/#default-designs | ||
| https://doc.ibexa.co/en/2.5/guide/extending/extending_back_office/#custom-content-type-icons | ||
| https://doc.ibexa.co/en/2.5/guide/extending/extending_form_builder/ | ||
| https://doc.ibexa.co/en/2.5/guide/extending/extending_online_editor/#custom-data-attributes-and-classes | ||
| https://doc.ibexa.co/en/2.5/guide/extending/extending_online_editor/#custom-plugins | ||
| https://doc.ibexa.co/en/2.5/guide/extending/extending_online_editor/#custom-tags | ||
| https://doc.ibexa.co/en/2.5/guide/extending/extending_online_editor/#custom-tags | ||
| https://doc.ibexa.co/en/2.5/guide/extending/extending_online_editor/#example-factbox-tag | ||
| https://doc.ibexa.co/en/2.5/guide/extending/extending_online_editor/#inline-custom-tags | ||
| https://doc.ibexa.co/en/2.5/guide/extending/extending_online_editor/#link-tag | ||
| https://doc.ibexa.co/en/2.5/guide/images/#reusing-images | ||
| https://doc.ibexa.co/en/2.5/guide/images/#setting-placeholder-generator | ||
| https://doc.ibexa.co/en/2.5/guide/internationalization/ | ||
| https://doc.ibexa.co/en/2.5/guide/limitation_reference/#state-limitation | ||
| https://doc.ibexa.co/en/2.5/guide/search/solr/ | ||
| https://doc.ibexa.co/en/2.5/guide/search/solr/#solrcloud | ||
| https://doc.ibexa.co/en/2.5/guide/url_management/#regenerating-url-aliases | ||
| https://doc.ibexa.co/en/2.5/guide/url_management/#url-alias-patterns | ||
| https://doc.ibexa.co/en/2.5/guide/url_management/#url-wildcards | ||
| https://doc.ibexa.co/en/2.5/guide/workflow/ | ||
| https://doc.ibexa.co/en/2.5/guide/workflow/#permissions | ||
| https://doc.ibexa.co/en/2.5/update_and_migration/from_1.x_2.x/update_app_to_2.5/#c-fix-other-conflicts | ||
| https://doc.ibexa.co/en/2.5/update_and_migration/from_1.x_2.x/update_db_to_2.5/#a-update-to-v22 | ||
| https://doc.ibexa.co/en/3.0/api/rest_api_guide/ | ||
| https://doc.ibexa.co/en/3.1/guide/url_management/ | ||
| https://doc.ibexa.co/en/3.3/api/public_php_api_search/#additional-search-result-data | ||
| https://doc.ibexa.co/en/3.3/extending/extending_udw/ | ||
| https://doc.ibexa.co/en/3.3/getting_started/install_ez_platform/ | ||
| https://doc.ibexa.co/en/3.3/guide/cache/http_cache/ | ||
| https://doc.ibexa.co/en/3.3/guide/content_rendering/queries_and_controllers/content_queries/#content-query-field | ||
| https://doc.ibexa.co/en/3.3/guide/data_migration/data_migration/ | ||
| https://doc.ibexa.co/en/3.3/guide/image_editor/ | ||
| https://doc.ibexa.co/en/3.3/guide/images/image_editor/ | ||
| https://doc.ibexa.co/en/3.3/guide/search/sort_clause_reference/contenttranslatedname_sort_clause/ | ||
| https://doc.ibexa.co/en/3.3/guide/search/sort_clause_reference/customfield_sort_clause/ | ||
| https://doc.ibexa.co/en/3.3/guide/search/sort_clause_reference/score_sort_clause/ | ||
| https://doc.ibexa.co/en/4.3/api/rest_api/rest_api_reference/rest_api_reference.html#product-catalog-create-catalog | ||
| https://doc.ibexa.co/en/4.3/api/rest_api/rest_api_reference/rest_api_reference.html#product-catalog-filter-catalogs | ||
| https://doc.ibexa.co/en/4.3/api/rest_api/rest_api_reference/rest_api_reference.html#product-catalog-load-catalog-filters | ||
| https://doc.ibexa.co/en/4.3/api/rest_api/rest_api_reference/rest_api_reference.html#product-catalog-update-catalog | ||
| https://doc.ibexa.co/en/4.3/pim/pim_configuration/#catalog-filters | ||
| https://doc.ibexa.co/en/4.3/update_and_migration/from_4.2/update_from_4.2/ | ||
| https://doc.ibexa.co/en/4.4/commerce/commerce/ | ||
| https://doc.ibexa.co/en/4.4/commerce/storefront/storefront/ | ||
| https://doc.ibexa.co/en/4.4/content_management/data_migration/data_migration_actions/#data-migration-actions | ||
| https://doc.ibexa.co/en/4.4/content_management/images/fastly_io/ | ||
| https://doc.ibexa.co/en/4.4/infrastructure_and_maintenance/clustering/clustering/#configuring-the-dfs-io-handler | ||
| https://doc.ibexa.co/en/4.5/api/rest_api/rest_api_usage/rest_requests/#expected-user | ||
| https://doc.ibexa.co/en/4.5/cdp/cdp_activation/#configuration | ||
| https://doc.ibexa.co/en/4.5/commerce/commerce/ | ||
| https://doc.ibexa.co/en/4.5/content_management/pages/react_app_block/ | ||
| https://doc.ibexa.co/en/4.5/content_management/pages/react_app_block/#react-app-block-configuration | ||
| https://doc.ibexa.co/en/4.5/customer_management/cp_page_builder/ | ||
| https://doc.ibexa.co/en/4.5/search/aggregation_reference/product_attribute_aggregations/ | ||
| https://doc.ibexa.co/en/4.5/search/aggregation_reference/productavailabilityterm_aggregation/ | ||
| https://doc.ibexa.co/en/4.5/search/aggregation_reference/productpricerange_aggregation/ | ||
| https://doc.ibexa.co/en/4.5/search/aggregation_reference/productstockrange_aggregation/ | ||
| https://doc.ibexa.co/en/4.5/search/aggregation_reference/producttypeterm_aggregation/ | ||
| https://doc.ibexa.co/en/4.5/search/aggregation_reference/taxonomyentryid_aggregation/ | ||
| https://doc.ibexa.co/en/4.5/search/criteria_reference/productstock_criterion/ | ||
| https://doc.ibexa.co/en/4.5/search/criteria_reference/productstockrange_criterion/ | ||
| https://doc.ibexa.co/en/4.5/users/passwords/#breached-passwords | ||
| https://doc.ibexa.co/projects/userguide/en/2.5/content_model/#content-tree | ||
| https://doc.ibexa.co/projects/userguide/en/2.5/creating_content_advanced/#forms | ||
| https://doc.ibexa.co/projects/userguide/en/2.5/multi_file_content_management/#multi-file-content-management | ||
| https://doc.ibexa.co/projects/userguide/en/2.5/publishing/advanced_publishing_options/ | ||
| https://doc.ibexa.co/projects/userguide/en/2.5/publishing/flex_workflow/#reviewing-a-draft | ||
| https://doc.ibexa.co/projects/userguide/en/2.5/search/#simplified-filtered-search | ||
| https://doc.ibexa.co/projects/userguide/en/3.1/publishing/publishing/#comparing-versions | ||
| https://doc.ibexa.co/projects/userguide/en/3.2/publishing/publishing/#autosave | ||
| https://doc.ibexa.co/projects/userguide/en/4.0/publishing/editorial_workflow/#releasing-locked-drafts | ||
| https://doc.ibexa.co/projects/userguide/en/4.0/site_organization/working_with_page/#configure-block-display | ||
| https://doc.ibexa.co/projects/userguide/en/4.1/site_organization/working_with_page/#dynamic-targeting-block | ||
| https://doc.ibexa.co/projects/userguide/en/4.2/user_management/manage_users/#invite-users | ||
| https://doc.ibexa.co/projects/userguide/en/4.2/user_management/manage_users/#register-as-a-user | ||
| https://doc.ibexa.co/projects/userguide/en/4.4/content_management/block_reference/#catalog-block | ||
| https://doc.ibexa.co/projects/userguide/en/4.4/content_management/block_reference/#last-purchased-block | ||
| https://doc.ibexa.co/projects/userguide/en/4.4/content_management/block_reference/#last-viewed-block | ||
| https://doc.ibexa.co/projects/userguide/en/4.4/content_management/block_reference/#product-collection-block | ||
| https://doc.ibexa.co/projects/userguide/en/4.4/content_management/block_reference/#recently-added-block | ||
| https://doc.ibexa.co/projects/userguide/en/4.4/personalization/enable_personalization/#request-access-to-the-server | ||
| https://doc.ibexa.co/projects/userguide/en/4.4/personalization/recommendation_models/#predictive | ||
| https://doc.ibexa.co/projects/userguide/en/4.4/personalization/recommendation_models/#recently-added | ||
| https://doc.ibexa.co/projects/userguide/en/4.4/personalization/recommendation_models/#recurring-purchase | ||
| https://doc.ibexa.co/projects/userguide/en/4.5/content_management/block_reference/#bestsellers-block | ||
| https://doc.ibexa.co/projects/userguide/en/4.5/content_management/translate_content/#translation-comparison | ||
| https://doc.ibexa.co/projects/userguide/en/4.5/customer_management/build_customer_portal/ | ||
| https://doc.ibexa.co/projects/userguide/en/4.5/personalization/recommendation_models/#b2b-model | ||
| https://doc.ibexa.co/projects/userguide/en/4.5/personalization/segment_management/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fastly is behind this solution (https://github.com/DMarby/picsum-photos/blob/60d20d8f20bafbe727bbd37f03d2cb22dc7d4309/README.md?plain=1#L9), so should be safe to use this one.