Add payload support
Signed-off-by: Sanjula Ganepola <sanjulagane@gmail.com>
This commit is contained in:
50
package.json
50
package.json
@@ -276,6 +276,12 @@
|
||||
"title": "Locate Variable Files",
|
||||
"icon": "$(search)"
|
||||
},
|
||||
{
|
||||
"category": "GitHub Local Actions",
|
||||
"command": "githubLocalActions.importFromGithub",
|
||||
"title": "Import from GitHub",
|
||||
"icon": "$(github)"
|
||||
},
|
||||
{
|
||||
"category": "GitHub Local Actions",
|
||||
"command": "githubLocalActions.createInputFile",
|
||||
@@ -290,9 +296,15 @@
|
||||
},
|
||||
{
|
||||
"category": "GitHub Local Actions",
|
||||
"command": "githubLocalActions.importFromGithub",
|
||||
"title": "Import from GitHub",
|
||||
"icon": "$(github)"
|
||||
"command": "githubLocalActions.createPayloadFile",
|
||||
"title": "Create Payload File",
|
||||
"icon": "$(add)"
|
||||
},
|
||||
{
|
||||
"category": "GitHub Local Actions",
|
||||
"command": "githubLocalActions.locatePayloadFiles",
|
||||
"title": "Locate Payload Files",
|
||||
"icon": "$(search)"
|
||||
},
|
||||
{
|
||||
"category": "GitHub Local Actions",
|
||||
@@ -430,6 +442,10 @@
|
||||
"command": "githubLocalActions.locateVariableFiles",
|
||||
"when": "never"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.importFromGithub",
|
||||
"when": "never"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.createInputFile",
|
||||
"when": "never"
|
||||
@@ -439,7 +455,11 @@
|
||||
"when": "never"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.importFromGithub",
|
||||
"command": "githubLocalActions.createPayloadFile",
|
||||
"when": "never"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.locatePayloadFiles",
|
||||
"when": "never"
|
||||
},
|
||||
{
|
||||
@@ -615,6 +635,11 @@
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.variables.*/",
|
||||
"group": "inline@1"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.importFromGithub",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.variables.*/",
|
||||
"group": "inline@2"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.createInputFile",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.inputs.*/",
|
||||
@@ -626,23 +651,28 @@
|
||||
"group": "inline@1"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.importFromGithub",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.variables.*/",
|
||||
"group": "inline@2"
|
||||
"command": "githubLocalActions.createPayloadFile",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.payloads.*/",
|
||||
"group": "inline@0"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.locatePayloadFiles",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.payloads.*/",
|
||||
"group": "inline@1"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.openSettingFile",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.(secret|variable|input)File.*/",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.(secret|variable|input|payload)File.*/",
|
||||
"group": "inline@0"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.removeSettingFile",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.(secret|variable|input)File.*/",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.(secret|variable|input|payload)File.*/",
|
||||
"group": "inline@1"
|
||||
},
|
||||
{
|
||||
"command": "githubLocalActions.deleteSettingFile",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.(secret|variable|input)File.*/",
|
||||
"when": "view == settings && viewItem =~ /^githubLocalActions.(secret|variable|input|payload)File.*/",
|
||||
"group": "inline@2"
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user