Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/src/commit/a9be9f3f8592c8e2104adcba15c0707af0c19c25/.github/workflows/markdown-lint.yml You should set ROOT_URL correctly, otherwise the web may not work correctly.
recyclarr/.github/workflows/markdown-lint.yml

34 lines
781 B

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Markdown Lint
on:
push:
# Explicitly specifying this results in tags being ignored, which is the goal.
branches: ["**"]
paths:
- "**.md"
- .github/workflows/markdown-lint.yml
- "!src/**"
- "!tests/**"
pull_request:
paths:
- "**.md"
- .github/workflows/markdown-lint.yml
- "!src/**"
- "!tests/**"
jobs:
markdownlint:
name: Markdown Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Lint Markdown Files
uses: DavidAnson/markdownlint-cli2-action@v16
with:
globs: |
**.md
!src/**
!tests/**