forked from Bhacaz/docs-as-code-confluence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 764 Bytes
/
action.yml
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
name: "Docs as Code - Confluence"
description: "Publish the content of a folder to confluence"
branding:
icon: 'book-open'
color: 'blue'
author: "Bhacaz"
inputs:
folder:
description: "Folder containing the documentation to publish."
required: true
username:
description: "Confluence username or email"
required: true
password:
description: "Confluence password or API key"
required: true
confluence-base-url:
description: "Your Confluence url"
required: true
space-key:
description: "Confluence space key to publish the documentation"
required: true
parent-page-id:
description: "Page id under which the documentation will be published"
required: true
runs:
using: "node20"
main: "dist/index.js"