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

24 lines
401 B

name: Lint - YAML
on:
push:
branches:
- master
pull_request:
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.6
- name: Run yamllint
run: |
docker run --rm \
-v "${GITHUB_WORKSPACE}":/yaml \
peterdavehello/yamllint \
yamllint \
-c "/yaml/yamllint.yml" \
.