1234567891011121314151617181920212223 |
- name: "Infra: Docs: URL linter"
- on:
- pull_request:
- types:
- - opened
- - labeled
- - reopened
- - synchronize
- paths:
- - 'documentation/**'
- - '**.md'
- jobs:
- build-and-test:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - name: Check URLs in files
- uses: urlstechie/urlchecker-action@0.0.34
- with:
- exclude_patterns: localhost,127.0.,192.168.
- exclude_urls: https://api.server,https://graph.microsoft.com/User.Read,https://dev-a63ggcut.auth0.com/,http://main-schema-registry:8081,http://schema-registry:8081,http://another-yet-schema-registry:8081,http://another-schema-registry:8081
- print_all: false
- file_types: .md
|