mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 02:15:12 +00:00
Awesome Copilot collection (#360)
* Adding a collection for the meta prompts to help discover items in the awesome copilot repo * Forgot to run validation locally * YAML schema validation set and updating readme
This commit is contained in:
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -13,5 +13,8 @@
|
||||
"*.chatmode.md": "markdown",
|
||||
"*.instructions.md": "markdown",
|
||||
"*.prompt.md": "markdown"
|
||||
},
|
||||
"yaml.schemas": {
|
||||
"./.schemas/collection.schema.json": "*.collection.yml"
|
||||
}
|
||||
}
|
||||
|
||||
17
.vscode/tasks.json
vendored
17
.vscode/tasks.json
vendored
@@ -1,6 +1,14 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "npm install",
|
||||
"type": "shell",
|
||||
"command": "npm ci",
|
||||
"problemMatcher": [],
|
||||
"group": "build",
|
||||
"detail": "Installs all npm dependencies."
|
||||
},
|
||||
{
|
||||
"label": "generate-readme",
|
||||
"type": "shell",
|
||||
@@ -10,7 +18,8 @@
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"detail": "Generates the README.md file using update-readme.js script."
|
||||
"detail": "Generates the README.md file using update-readme.js script.",
|
||||
"dependsOn": "npm install"
|
||||
},
|
||||
{
|
||||
"label": "validate-collections",
|
||||
@@ -18,7 +27,8 @@
|
||||
"command": "node ${workspaceFolder}/eng/validate-collections.js",
|
||||
"problemMatcher": [],
|
||||
"group": "build",
|
||||
"detail": "Validates all collection manifest files."
|
||||
"detail": "Validates all collection manifest files.",
|
||||
"dependsOn": "npm install"
|
||||
},
|
||||
{
|
||||
"label": "create-collection",
|
||||
@@ -33,7 +43,8 @@
|
||||
],
|
||||
"problemMatcher": [],
|
||||
"group": "build",
|
||||
"detail": "Creates a new collection manifest template."
|
||||
"detail": "Creates a new collection manifest template.",
|
||||
"dependsOn": "npm install"
|
||||
}
|
||||
],
|
||||
"inputs": [
|
||||
|
||||
Reference in New Issue
Block a user