mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 10:56:10 +01:00 
			
		
		
		
	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:
		
							
								
								
									
										28
									
								
								.github/labeler.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										28
									
								
								.github/labeler.yml
									
									
									
									
										vendored
									
									
								
							| @@ -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" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user