mirror of
https://github.com/cupcakearmy/confluence-markdown-sync.git
synced 2024-12-22 07:56:25 +00:00
23 lines
548 B
YAML
23 lines
548 B
YAML
# action.yml
|
|
name: 'confluence-markdown-sync'
|
|
description: 'Copy content of a markdown file to a confluence site'
|
|
inputs:
|
|
from:
|
|
description: 'Path to the markdown file. Relative to root of repository'
|
|
required: true
|
|
to:
|
|
description: 'The page ID in confluence'
|
|
required: true
|
|
cloud:
|
|
description: 'Atlassian Cloud ID'
|
|
required: true
|
|
user:
|
|
description: 'Username of the token user'
|
|
required: true
|
|
token:
|
|
description: 'Token for the user'
|
|
required: true
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|