docs: fix properties file syntax due to changes in the theme (#145)

This commit is contained in:
Robert Kaussow 2022-11-24 15:09:24 +01:00 committed by GitHub
parent 0aa0f41f66
commit 933ce72c05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -36,7 +36,7 @@ steps:
<!-- prettier-ignore-start -->
<!-- spellchecker-disable -->
{{< propertylist name=drone-github-comment.data >}}
{{< propertylist name=drone-github-comment.data sort=name >}}
<!-- spellchecker-enable -->
<!-- prettier-ignore-end -->

View File

@ -1,33 +1,33 @@
---
properties:
api_key:
- name: api_key
description: Personal Access token to access the GitHub API.
type: string
required: true
base_url:
- name: base_url
description: API URL. Only need to be changed for GitHub enterprise in most cases
defaultValue: https://api.github.com
type: string
required: false
key:
- name: key
description: Unique identifier to assign to a comment. The identifier is used to update an existing comment.
type: string
required: false
message:
- name: message
description: Path to file or string that contains the comment text.
type: string
required: true
update:
- name: update
description: Enables update of an existing comment that matches the key.
defaultValue: false
type: bool
required: false
skip_missing:
- name: skip_missing
description: Skips comment creation if the given message file does not exist
defaultValue: false
type: bool