Skip to content

Commit

Permalink
Fixes yaml syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikheld committed Aug 13, 2020
1 parent 3424cd4 commit 6b9482b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@
#
# As it does not use the public PlantUML render service
# but an intance of the PlantUML Java app, this action
# doesn't leak your documentation to the public and can
# doesnt leak your documentation to the public and can
# therefore be used in private repositories.

name: 'Render PlantUML to Wiki'
description: 'Renders PlantUML diagrams and pushes the generated PNG files to your repo's wiki'
name: Render PlantUML to wiki
description: Renders PlantUML diagrams and pushes the generated PNG files to your repos wiki
branding:
icon: 'file-text'
color: 'blue'
icon: file-text
color: blue

inputs:
WIKI_TOKEN:
description: 'Secure token to access wiki repo'
description: Secure token to access wiki repo
required: true
INPUT_DIR:
description: 'Directory in repo to read PlantUML source files from'
default: '/input_directory'
description: Directory in repo to read PlantUML source files from
default: /input_directory
OUTPUT_DIR:
description: 'Directory in wiki to write rendered diagrams to'
default: '/output_directory'
description: Directory in wiki to write rendered diagrams to
default: /output_directory

runs:
using: 'Docker'
image: 'Dockerfile'
using: Docker
image: Dockerfile
args:
- ${{ inputs.WIKI_TOKEN }}
- ${{ inputs.INPUT_DIR }}
Expand Down

0 comments on commit 6b9482b

Please sign in to comment.