Skip to content

List fixed issues in patch release notes #2806

List fixed issues in patch release notes

List fixed issues in patch release notes #2806

name: "Check markdown links"
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
permissions: {}
jobs:
check-links:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check links
uses: lycheeverse/[email protected]
with:
# excluded:
# - notes.md and notes-templates.md - because they are a part of user guide
# - Kotlin's Module.md - because it's a part of the Kotlin DSL docs
args: >
--no-progress --offline '**/*.md' --include-fragments
--exclude-path 'platforms/documentation/docs/src/docs/release/notes.md'
--exclude-path 'platforms/documentation/docs/src/docs/release/notes-template.md'
--exclude-path 'platforms/documentation/docs/src/docs/kotlin/Module.md'
fail: true