This commit is contained in:
cupcakearmy
2020-12-13 16:14:13 +01:00
parent 80c6c8e7ed
commit 59a6497240
9 changed files with 271 additions and 32 deletions

View File

@@ -1,16 +1,22 @@
# action.yml
name: 'Hello World'
description: 'Greet someone and record the time'
name: 'confluence-markdown-sync'
description: 'Copy content of a markdown file to a confluence site'
inputs:
who-to-greet: # id of input
description: 'Who to greet'
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
default: 'World'
outputs:
time: # id of output
description: 'The time we greeted you'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.who-to-greet }}