Skip to content

Commit

Permalink
add default type
Browse files Browse the repository at this point in the history
  • Loading branch information
jshawl committed Mar 26, 2024
1 parent 36167da commit 97a0ad6
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
name: 'CINotify Email'
name: "CINotify Email"
branding:
icon: 'mail'
color: 'yellow'
description: 'Send an email notification'
icon: "mail"
color: "yellow"
description: "Send an email notification"
inputs:
to: # id of input
description: 'Recipient email address'
to: # id of input
description: "Recipient email address"
required: true
subject:
description: 'Email subject'
description: "Email subject"
body:
description: 'Email body'
description: "Email body"
type:
description: 'Email body MIME type'
description: "Email body MIME type"
default: "text/plain"
attachment:
description: 'Email attachment'
description: "Email attachment"
outputs:
status: # id of output
description: 'The delivery status of the notification'
description: "The delivery status of the notification"
runs:
using: 'node20'
main: 'index.js'
using: "node20"
main: "index.js"

0 comments on commit 97a0ad6

Please sign in to comment.