mirror of
https://github.com/chenasraf/schemastore.git
synced 2026-05-17 17:58:02 +00:00
GitHub Workflows fileMatch no-recurse (#2344)
Workflows are found in `.github/workflows/` but not in subdirs thereof. This can easily be verified by creating a new repo and putting a hello-world workflow into such a dir, e.g. `.github/workflows/hello_world/runme.yaml` Therefore, the fileMatch rule should be done with `*`, not `**`.
This commit is contained in:
@@ -1264,7 +1264,7 @@
|
||||
{
|
||||
"name": "GitHub Workflow",
|
||||
"description": "YAML schema for GitHub Workflow",
|
||||
"fileMatch": [".github/workflows/**.yml", ".github/workflows/**.yaml"],
|
||||
"fileMatch": [".github/workflows/*.yml", ".github/workflows/*.yaml"],
|
||||
"url": "https://json.schemastore.org/github-workflow.json"
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user