From 5265389f5b404635d21a3e06e95aa9c663cfd6b4 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sun, 15 Feb 2026 12:15:43 +0100 Subject: [PATCH] fix(vscode): set file association for Gitea workflows --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index f65313f..bf3294f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,8 +1,11 @@ { + "files.associations": { + ".gitea/workflows/*.yaml": "github-actions-workflow" + }, "yaml.schemas": { "https://raw.githubusercontent.com/helm-unittest/helm-unittest/v1.0.3/schema/helm-testsuite.json": [ "/unittests/**/*.yaml" ] }, "yaml.schemaStore.enable": true -} \ No newline at end of file +}