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

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

View File

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

View File

@ -1,37 +1,37 @@
--- ---
properties: properties:
username: - name: username
description: Authentication username. If set, the `password` parameter is required as well. description: Authentication username. If set, the `password` parameter is required as well.
type: string type: string
required: false required: false
password: - name: password
description: Authentication password. description: Authentication password.
type: string type: string
required: false required: false
user_id: - name: user_id
description: Aauthentication User ID. If set, the `access_token` parameter is required as well. description: Aauthentication User ID. If set, the `access_token` parameter is required as well.
type: string type: string
required: false required: false
access_token: - name: access_token
description: Authentication access token. description: Authentication access token.
type: string type: string
required: false required: false
homeserver: - name: homeserver
description: The Matrix homeserver url to use. description: The Matrix homeserver url to use.
defaultValue: https://matrix.org defaultValue: https://matrix.org
type: string type: string
required: false required: false
roomid: - name: roomid
description: Room ID to send messages to. description: Room ID to send messages to.
type: string type: string
required: false required: false
template: - name: template
description: Golang template for the messages. description: Golang template for the messages.
defaultValue: build {{ build.status }} [{{ repo.owner }}/{{ repo.name }}#{{ truncate build.commit 8 }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }} defaultValue: build {{ build.status }} [{{ repo.owner }}/{{ repo.name }}#{{ truncate build.commit 8 }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}
type: string type: string