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/692ad2ccae6835eb07f046331da2119814682a91/.github/workflows/lint-yaml.yml
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
name: Lint - YAML
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
yamllint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.1.1
|
|
|
|
- name: Run yamllint
|
|
run: |
|
|
docker run --rm \
|
|
-v "${GITHUB_WORKSPACE}":/yaml \
|
|
peterdavehello/yamllint \
|
|
yamllint \
|
|
-c "/yaml/yamllint.yml" \
|
|
.
|