Skip to content

Commit e98cfba

Browse files
patch: values should be optional
1 parent 7a32dc0 commit e98cfba

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
echo "::set-output name=changelog::$(git log -1 --pretty=format:"%s")"
2929
3030
- name: Bump version and push tag
31-
uses: anothrNick/github-tag-action@1.17.2
31+
uses: anothrNick/github-tag-action@1.22.0
3232
id: tag
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ module jenkins {
109109
| repository | Helm repository | `string` | n/a | yes |
110110
| set | Value block with custom STRING values to be merged with the values yaml. | <pre>list(object({<br> name = string<br> value = string<br> }))</pre> | `null` | no |
111111
| set\_sensitive | Value block with custom sensitive values to be merged with the values yaml that won't be exposed in the plan's diff. | <pre>list(object({<br> path = string<br> value = string<br> }))</pre> | `null` | no |
112-
| values | Extra values | `list(string)` | n/a | yes |
112+
| values | Extra values | `list(string)` | `[]` | no |
113113

114114
## Outputs
115115

variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ variable "app" {
1111
variable "values" {
1212
description = "Extra values"
1313
type = list(string)
14+
default = []
1415
}
1516

1617
variable "set" {

0 commit comments

Comments
 (0)