docs: fix default value property in data file

This commit is contained in:
Robert Kaussow 2024-01-03 23:26:15 +01:00
parent 794b54d19d
commit ab048c2694
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 4 additions and 5 deletions

View File

@ -11,7 +11,7 @@ properties:
type: {{ . }} type: {{ . }}
{{- end }} {{- end }}
{{- with $v.Default }} {{- with $v.Default }}
defaultvalue: {{ . }} defaultValue: {{ . }}
{{- end }} {{- end }}
required: {{ default false $v.Required }} required: {{ default false $v.Required }}
{{ end -}} {{ end -}}

View File

@ -12,7 +12,7 @@ properties:
Only need to be changed for GitHub enterprise in most cases. Only need to be changed for GitHub enterprise in most cases.
type: string type: string
defaultvalue: "https://api.github.com/" defaultValue: "https://api.github.com/"
required: false required: false
- name: key - name: key
@ -33,13 +33,12 @@ properties:
description: | description: |
Skip comment creation if the given message file does not exist. Skip comment creation if the given message file does not exist.
type: bool type: bool
defaultvalue: false defaultValue: false
required: false required: false
- name: update - name: update
description: | description: |
Enable update of an existing comment that matches the key. Enable update of an existing comment that matches the key.
defaultValue: false
type: bool type: bool
defaultvalue: false defaultValue: false
required: false required: false