Create multiple workflows for different actions

This commit is contained in:
2026-09-10 14:08:13 +02:00
parent 7a59237d45
commit 1d7389f3e8
24 changed files with 2508 additions and 839 deletions
@@ -20,6 +20,14 @@ export class Logger {
this.outputChannel.appendLine(`[${new Date().toISOString()}][ERROR] ${message}`);
}
debug(message: string) {
this.outputChannel.appendLine(`[${new Date().toISOString()}][DEBUG] ${message}`);
}
warn(message: string) {
this.outputChannel.appendLine(`[${new Date().toISOString()}][WARN] ${message}`);
}
clear() {
this.outputChannel.clear();
}