Skip to content

Commit

Permalink
Merge pull request #9 from unacast/add_description
Browse files Browse the repository at this point in the history
Add description parameter to the action
  • Loading branch information
Torbjørn Vatn authored Mar 4, 2020
2 parents 9aeef4e + 3d2d673 commit 5d11a6b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ inputs:
status:
description: 'The status to create. Can be one of error, failure, inactive, in_progress, queued pending, or success'
required: true
description:
description: 'The description to create. Restricted to 140 chars'
required: false
default: ""
runs:
using: 'docker'
image: 'Dockerfile'
args: ['${{ inputs.status }}']
args: ['${{ inputs.status }}', '${{ inputs.description }}']
branding:
icon: 'send'
color: 'green'

0 comments on commit 5d11a6b

Please sign in to comment.