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.
This commit is contained in:
silverwind 2023-09-08 02:50:10 +02:00 committed by GitHub
parent 6cbbd51ad4
commit f9abb6ade2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 14 deletions

28
.github/labeler.yml vendored
View File

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