-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yaml
49 lines (49 loc) · 1.73 KB
/
action.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: 'Docs-as-code with Confluence'
description: 'Publishes documentation (requires an MkDocs config) to Confluence'
branding:
icon: 'book-open'
color: 'gray-dark'
runs:
using: 'node20'
main: 'dist/index.js'
inputs:
confluence_tenant:
description: 'Your Atlassian tenant name'
required: true
confluence_space:
description: 'The key of the space to host your documentation'
required: true
confluence_user:
description: 'The username used to authenticate with Confluence REST API'
required: true
confluence_token:
description: 'The token used to authenticate with Confluence REST API'
required: true
confluence_parent_page:
description: 'The title of an existing page to use as parent'
required: false
confluence_title_prefix:
description: 'This prefix will be prepended to all confluence page titles'
required: false
confluence_force_update:
description: 'When set to "yes" all pages will be published to confluence including unchanged'
required: false
default: 'no'
confluence_cleanup:
description: 'When set to "yes" all pages will be deleted from confluence'
required: false
default: 'no'
kroki_enabled:
description: 'When "yes" conversion of Mermaid & PlantUML graphs into images (png) using "kroki.io"'
required: false
default: 'yes'
kroki_host:
description: "Overwrite to use a local kroki deployment"
requierd: false
default: 'https://kroki.io'
mermaid_renderer:
description: 'The strategy to use for mermaid graphs. Can be one of "none", "kroki" or "mermaid-plugin"'
required: false
plantuml_renderer:
description: 'The strategy to use for plantUml graphs. Can be one of "none", "kroki" or "plantuml"'
required: false