Merge pull request #537 from actions/cdb/creator
Add creator field and populate for partner templates
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Deploy to Amazon ECS",
|
"name": "Deploy to Amazon ECS",
|
||||||
"description": "Deploy a container to an Amazon ECS service powered by AWS Fargate or Amazon EC2.",
|
"description": "Deploy a container to an Amazon ECS service powered by AWS Fargate or Amazon EC2.",
|
||||||
|
"creator": "Amazon Web Services",
|
||||||
"iconName": "aws",
|
"iconName": "aws",
|
||||||
"categories": null
|
"categories": null
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Deploy Node.js to Azure Web App",
|
"name": "Deploy Node.js to Azure Web App",
|
||||||
"description": "Build a Node.js project and deploy it to an Azure Web App.",
|
"description": "Build a Node.js project and deploy it to an Azure Web App.",
|
||||||
|
"creator": "Microsoft Azure",
|
||||||
"iconName": "azure",
|
"iconName": "azure",
|
||||||
"categories": null
|
"categories": null
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Build and Deploy to GKE",
|
"name": "Build and Deploy to GKE",
|
||||||
"description": "Build a docker container, publish it to Google Container Registry, and deploy to GKE.",
|
"description": "Build a docker container, publish it to Google Container Registry, and deploy to GKE.",
|
||||||
|
"creator": "Google Cloud",
|
||||||
"iconName": "googlegke",
|
"iconName": "googlegke",
|
||||||
"categories": null
|
"categories": null
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Deploy to IBM Cloud Kubernetes Service",
|
"name": "Deploy to IBM Cloud Kubernetes Service",
|
||||||
"description": "Build a docker container, publish it to IBM Cloud Container Registry, and deploy to IBM Cloud Kubernetes Service.",
|
"description": "Build a docker container, publish it to IBM Cloud Container Registry, and deploy to IBM Cloud Kubernetes Service.",
|
||||||
|
"creator": "IBM",
|
||||||
"iconName": "ibm",
|
"iconName": "ibm",
|
||||||
"categories": null
|
"categories": null
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Tencent Kubernetes Engine",
|
"name": "Tencent Kubernetes Engine",
|
||||||
"description": "This workflow will build a docker container, publish and deploy it to Tencent Kubernetes Engine (TKE).",
|
"description": "This workflow will build a docker container, publish and deploy it to Tencent Kubernetes Engine (TKE).",
|
||||||
|
"creator": "Tencent Cloud",
|
||||||
"iconName": "tencentcloud",
|
"iconName": "tencentcloud",
|
||||||
"categories": null
|
"categories": null
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Terraform",
|
"name": "Terraform",
|
||||||
"description": "Set up Terraform CLI in your GitHub Actions workflow.",
|
"description": "Set up Terraform CLI in your GitHub Actions workflow.",
|
||||||
|
"creator": "HashiCorp",
|
||||||
"iconName": "terraform",
|
"iconName": "terraform",
|
||||||
"categories": null
|
"categories": null
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ const propertiesSchema = {
|
|||||||
properties: {
|
properties: {
|
||||||
name: { type: "string", required: true },
|
name: { type: "string", required: true },
|
||||||
description: { type: "string", required: true },
|
description: { type: "string", required: true },
|
||||||
|
creator: { type: "string", required: false },
|
||||||
iconName: { type: "string", required: true },
|
iconName: { type: "string", required: true },
|
||||||
categories: {
|
categories: {
|
||||||
anyOf: [
|
anyOf: [
|
||||||
|
|||||||
Reference in New Issue
Block a user