Skip to content

Commit

Permalink
Add action icons and missing properties
Browse files Browse the repository at this point in the history
  • Loading branch information
hwinther committed May 3, 2024
1 parent d707aec commit e1666a8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
15 changes: 5 additions & 10 deletions .github/actions/backend-deploy/action.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,37 @@
name: "Backend deploy"
description: "Deploys backend component"
branding:
icon: server
color: black

inputs:
deploy_target:
required: true
type: string
description: prod|qa|test|dev
repo_name:
required: true
type: string
description: main|qa|test|dev (repo name defined separate because main maps to prod)
labels:
required: true
type: string
description: labels from conditions in trigger workflow
base_name:
required: true
type: string
description: basil|gsi|login|ext
project_type:
required: true
type: string
description: function|app
dockerfile_path:
required: true
type: string
description: path to dockerfile
docker_image_name:
required: true
type: string
description: docker image name
azure_resource_name:
required: true
type: string
description: azure resource name
skip_setup:
required: false
default: false
type: bool
default: "false"
description: if true skips setting up .net and nuget package restore

runs:
Expand Down
3 changes: 3 additions & 0 deletions .github/actions/frontend-build/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: "Frontend build"
description: "Frontend (node) build and linting"
branding:
icon: table
color: black

inputs:
working_directory:
Expand Down
10 changes: 5 additions & 5 deletions .github/actions/platform-deploy/action.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: "Backend deploy"
name: "Platform deploy"
description: "Deploys platform component"
branding:
icon: layers
color: black

inputs:
deploy_target:
required: true
type: string
description: prod|qa|test|dev
working_directory:
required: true
type: string
description: root folder where the main terraform plan resides, e.g. ./templates/terraform/
config_path:
required: true
type: string
description: .conf file relative to working_directory
var_path:
required: true
type: string
description: .var file path relative to working_directory

runs:
Expand Down

0 comments on commit e1666a8

Please sign in to comment.