Skip to content

Commit

Permalink
added tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbraun89 authored Sep 30, 2023
1 parent 8b85f6b commit d250c80
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "bump version",
"type": "shell",
"command": "python3 ./dev/bump_version_feature_definitions.py ${input:featureDefinitionsLocation} ${input:versionType} --depends-on ${input:dependsOn}",
"options": {
"env": {
"PYTHONPATH": "${workspaceFolder}${pathSeparator}${env:PYTHONPATH}"
},
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
}
],

"inputs": [
{
"id": "versionType",
"description": "versionType",
"type": "pickString",
"options": [
"patch",
"minor",
"major"
],
"default": "patch"
},

{
"id": "featureDefinitionsLocation",
"description": "featureDefinitionsLocation",
"type": "promptString",
"default": "./feature_definitions"
},

{
"id": "dependsOn",
"description": "dependsOn",
"type": "promptString",
"default": ""
}

]
}

0 comments on commit d250c80

Please sign in to comment.