mirror of
https://github.com/thegeeklab/drone-github-comment.git
synced 2024-11-21 18:20:40 +00:00
docs: fix properties file syntax due to changes in the theme (#145)
This commit is contained in:
parent
0aa0f41f66
commit
933ce72c05
@ -36,7 +36,7 @@ steps:
|
|||||||
|
|
||||||
<!-- prettier-ignore-start -->
|
<!-- prettier-ignore-start -->
|
||||||
<!-- spellchecker-disable -->
|
<!-- spellchecker-disable -->
|
||||||
{{< propertylist name=drone-github-comment.data >}}
|
{{< propertylist name=drone-github-comment.data sort=name >}}
|
||||||
<!-- spellchecker-enable -->
|
<!-- spellchecker-enable -->
|
||||||
<!-- prettier-ignore-end -->
|
<!-- prettier-ignore-end -->
|
||||||
|
|
||||||
|
@ -1,33 +1,33 @@
|
|||||||
---
|
---
|
||||||
properties:
|
properties:
|
||||||
api_key:
|
- name: api_key
|
||||||
description: Personal Access token to access the GitHub API.
|
description: Personal Access token to access the GitHub API.
|
||||||
type: string
|
type: string
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
base_url:
|
- name: base_url
|
||||||
description: API URL. Only need to be changed for GitHub enterprise in most cases
|
description: API URL. Only need to be changed for GitHub enterprise in most cases
|
||||||
defaultValue: https://api.github.com
|
defaultValue: https://api.github.com
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
key:
|
- name: key
|
||||||
description: Unique identifier to assign to a comment. The identifier is used to update an existing comment.
|
description: Unique identifier to assign to a comment. The identifier is used to update an existing comment.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
message:
|
- name: message
|
||||||
description: Path to file or string that contains the comment text.
|
description: Path to file or string that contains the comment text.
|
||||||
type: string
|
type: string
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
update:
|
- name: update
|
||||||
description: Enables update of an existing comment that matches the key.
|
description: Enables update of an existing comment that matches the key.
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
type: bool
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
skip_missing:
|
- name: skip_missing
|
||||||
description: Skips comment creation if the given message file does not exist
|
description: Skips comment creation if the given message file does not exist
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
type: bool
|
type: bool
|
||||||
|
Loading…
Reference in New Issue
Block a user