workflows-samples icon indicating copy to clipboard operation
workflows-samples copied to clipboard

Add Dev Instructions for Updating Workflow Schema

Open grant opened this issue 4 years ago • 0 comments

There should instructions for how to update a schema when developing (in VS Code).

Example settings:

"json.schemas": [
        {
            "name": "workflows.json",
            "description": "Google Cloud Workflows configuration file",
            "fileMatch": [
                "workflows.json",
                "*.workflows.json",
            ],
            "url": "https://json.schemastore.org/workflows"
          }
    ],
    "yaml.schemas": {
        "https://json.schemastore.org/workflows": [
            "workflows.yaml",
            "workflows.yml",
            "*.workflows.yaml",
            "*.workflows.yml"
        ]
    },

grant avatar Dec 03 '20 03:12 grant