vscode_deno icon indicating copy to clipboard operation
vscode_deno copied to clipboard

feat: support github-actions-workflow language

Open gadicc opened this issue 4 months ago • 1 comments

Resolves #1170.

  • In extension.ts, adds { language: "github-actions-workflow } for the following schema: "file", "untitled", "deno". In each cases, added directly below the related entry for language: "yaml".

  • In package.json, adds to the activationEvents array, "onLanguage:github-actions-workflow". THE SAME WAS ALSO ADDED FOR "onLanguage:yaml" which I assume was left out unintentionally.

Based on the same changes for vscode-yaml at https://github.com/redhat-developer/vscode-yaml/pull/1105.

Motivation: deno fmt already checks all yaml files (including github actions files) by default. If editing a deno project in vscode, we should be able to edit github actions files in vscode without them failing deno fmt --check in CI.

gadicc avatar Sep 01 '25 09:09 gadicc