Skip to content

Commit 7035d19

Browse files
authored
feat: Add required parameter to all action inputs (deliverybot#33)
Adds the required parameter to all action.yml input parameters. This is required by GitHub.
1 parent d2a1338 commit 7035d19

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

action.yml

+10
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,39 @@ color: gray-dark
66
inputs:
77
release:
88
description: Helm release name. Will be combined with track if set. (required)
9+
required: true
910
namespace:
1011
description: Kubernetes namespace name. (required)
12+
required: true
1113
chart:
1214
description: Helm chart path. If set to "app" this will use the built in helm
1315
chart found in this repository. (required)
16+
required: true
1417
values:
1518
description: Helm chart values, expected to be a YAML or JSON string.
19+
required: false
1620
dry-run:
1721
description: Task name. If the task is "remove" it will remove the configured
1822
helm release.
23+
required: false
1924
helm:
2025
description: Helm binary to execute, one of [helm, helm3].
26+
required: false
2127
token:
2228
description: Github repository token. If included and the event is a deployment
2329
the deployment_status event will be fired.
30+
required: false
2431
value-files:
2532
description: Additional value files to apply to the helm chart. Expects JSON encoded
2633
array or a string.
34+
required: false
2735
secrets:
2836
description: Secret variables to include in value file interpolation. Expects
2937
JSON encoded map.
38+
required: false
3039
version:
3140
description: Version of the app, usually commit sha works here.
41+
required: false
3242
runs:
3343
using: docker
3444
image: Dockerfile

0 commit comments

Comments
 (0)