From 0d5ab6ae00b578408976bde0ce387a1c7ed16c97 Mon Sep 17 00:00:00 2001 From: Sanjula Ganepola Date: Tue, 24 Sep 2024 23:47:26 -0400 Subject: [PATCH] add views Signed-off-by: Sanjula Ganepola --- package.json | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index a3a82cb..4747acf 100644 --- a/package.json +++ b/package.json @@ -29,11 +29,36 @@ "activationEvents": [], "main": "./dist/extension.js", "contributes": { + "viewsContainers": { + "activitybar": [ + { + "id": "github-local-actions-container", + "title": "GitHub Local Actions", + "icon": "$(robot)" + } + ] + }, + "views": { + "github-local-actions-container": [ + { + "id": "status", + "name": "Status" + }, + { + "id": "workflows", + "name": "Workflows" + }, + { + "id": "events", + "name": "Events" + }, + { + "id": "settings", + "name": "Settings" + } + ] + }, "commands": [ - { - "command": "github-local-actions.helloWorld", - "title": "Hello World" - } ] }, "scripts": {