Fix yaml quoting (#26964)

Yaml [does not
like](https://github.com/go-gitea/gitea/actions/runs/6115139962/job/16598147278?pr=26568)
keys that start with `*` so let's quote all globs.
mj-develop
silverwind 8 months ago committed by GitHub
parent 6cbbd51ad4
commit f9abb6ade2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,24 +1,24 @@
kind/docs:
- **/*.md
- docs/**/*
- "**/*.md"
- "docs/**/*"
kind/ui:
- web_src/**/*
- "web_src/**/*"
- all: ["templates/**/*", "!templates/swagger/v1_json.tmpl"]
kind/api:
- templates/swagger/v1_json.tmpl
- "templates/swagger/v1_json.tmpl"
kind/build:
- Makefile
- Dockerfile
- Dockerfile.rootless
- docker/**
- webpack.config.js
- "Makefile"
- "Dockerfile"
- "Dockerfile.rootless"
- "docker/**"
- "webpack.config.js"
kind/lint:
- .eslintrc.yaml
- .golangci.yml
- .markdownlint.yaml
- .spectral.yaml
- .stylelintrc.yaml
- ".eslintrc.yaml"
- ".golangci.yml"
- ".markdownlint.yaml"
- ".spectral.yaml"
- ".stylelintrc.yaml"

Loading…
Cancel
Save