loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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.

authored by

silverwind and committed by
GitHub
f9abb6ad 6cbbd51a

+14 -14
+14 -14
.github/labeler.yml
··· 1 1 kind/docs: 2 - - **/*.md 3 - - docs/**/* 2 + - "**/*.md" 3 + - "docs/**/*" 4 4 5 5 kind/ui: 6 - - web_src/**/* 6 + - "web_src/**/*" 7 7 - all: ["templates/**/*", "!templates/swagger/v1_json.tmpl"] 8 8 9 9 kind/api: 10 - - templates/swagger/v1_json.tmpl 10 + - "templates/swagger/v1_json.tmpl" 11 11 12 12 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" 18 18 19 19 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"