forked from rafaelvicio/sns-sms
-
Notifications
You must be signed in to change notification settings - Fork 7
/
action.yml
28 lines (28 loc) · 790 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: "AWS SNS - Publish Topic"
author: "Kyle Johns"
description: "Send a SNS Topic via GitHub Actions"
inputs:
MESSAGE:
description: "The message you want to send"
required: true
TOPIC_ARN:
description: "The topic arn you are sending"
required: true
AWS_REGION:
description: "A AWSN SNS Region. Can alternatively be stored in environment"
required: true
AWS_ACCESS_KEY_ID:
description: "A AWS SNS Key. Can alternatively be stored in environment"
required: true
AWS_SECRET_ACCESS_KEY:
description: "A AWS SNS Secret. Can alternatively be stored in environment"
required: true
outputs:
messageID:
description: "The AWS SNS Message ID"
runs:
using: "node12"
main: "src/index.js"
branding:
color: "orange"
icon: "message-circle"