feat(catalog-backend): add the new kind to the validation workflow

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-09-22 18:08:21 +02:00
parent b2113723d0
commit ccea0b8271
4 changed files with 43 additions and 1 deletions
@@ -0,0 +1,30 @@
apiVersion: backstage.io/v1beta3
kind: Template
metadata:
name: test-v1beta3
title: Test v1beta3
description: Test V1 Beta 3 Demo Templates
spec:
type: website
parameters:
- name: Enter some stuff
description: Enter some stuff
properties:
inputString:
type: string
inputObject:
type: object
properties:
first:
type: string
second:
type: number
steps:
- id: debug
name: Debug
action: debug:log
input:
message: ${{ parameters.inputString }}
extra: ${{ parameters.inputObject }}