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

ci: Workflow for markdown lint

pull/51/head
Robert Dailey 3 years ago
parent e8375aaadc
commit c2f85a30e7

@ -0,0 +1,25 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Markdown Lint
on:
push:
paths:
- "**.md"
- "!src/**"
env:
dotnetVersion: "6.0.x"
jobs:
markdownlint:
name: Markdown Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Lint Markdown Files
uses: DavidAnson/markdownlint-cli2-action@v5
with:
globs: |
**.md
!src/**
Loading…
Cancel
Save