Skip to content

Commit f9abb6a

Browse files
authored
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.
1 parent 6cbbd51 commit f9abb6a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/labeler.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
kind/docs:
2-
- **/*.md
3-
- docs/**/*
2+
- "**/*.md"
3+
- "docs/**/*"
44

55
kind/ui:
6-
- web_src/**/*
6+
- "web_src/**/*"
77
- all: ["templates/**/*", "!templates/swagger/v1_json.tmpl"]
88

99
kind/api:
10-
- templates/swagger/v1_json.tmpl
10+
- "templates/swagger/v1_json.tmpl"
1111

1212
kind/build:
13-
- Makefile
14-
- Dockerfile
15-
- Dockerfile.rootless
16-
- docker/**
17-
- webpack.config.js
13+
- "Makefile"
14+
- "Dockerfile"
15+
- "Dockerfile.rootless"
16+
- "docker/**"
17+
- "webpack.config.js"
1818

1919
kind/lint:
20-
- .eslintrc.yaml
21-
- .golangci.yml
22-
- .markdownlint.yaml
23-
- .spectral.yaml
24-
- .stylelintrc.yaml
20+
- ".eslintrc.yaml"
21+
- ".golangci.yml"
22+
- ".markdownlint.yaml"
23+
- ".spectral.yaml"
24+
- ".stylelintrc.yaml"

0 commit comments

Comments
 (0)