-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaction.yml
57 lines (55 loc) · 1.64 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: "Twilio-Whatsapp Action"
description: "Recieve repo notifications on your whatsapp when a push occurs in the master branch"
author: "mdb571"
branding:
icon: message-square
color: black
inputs:
from:
description: "The twilio whatsapp number from which the sms should be sent"
required: true
to:
description: "The number which is configured with twilio"
required: true
twilio_account_sid:
description: "Twilio Accout SID from twilio console"
required: true
twilio_auth:
description: "Twilio Authentication token from console"
required: true
iutitle:
description: 'Issue Title'
default: ${{ github.event.issue.title }}
iunum:
description: 'Issue Number'
default: ${{ github.event.issue.number }}
iu_actor:
description: 'Issue Triggerer'
default: ${{ github.event.issue.user.login }}
iu_body:
description: 'Issue Body'
default: ${{ github.event.issue.body }}
iu_com:
description: 'Issue Comment'
default: ${{github.event.comment.body}}
event_action:
description: "Current state of the issue/pull request"
default: ${{ github.event.action }}
prnum:
description: 'PR Number'
default: ${{ github.event.pull_request.number }}
prtitle:
description: 'PR Title'
default: ${{ github.event.pull_request.title }}
pr_body:
description: 'PR Content'
default: ${{ github.event.pull_request.body }}
stargazers:
description: 'Stars of the Repo'
default: ${{ github.event.repository.stargazers_count }}
forkers:
description: 'Number of Forks'
default: ${{ github.event.repository.forks_count }}
runs:
using: "docker"
image: "Dockerfile"