generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 10
/
action.yml
34 lines (33 loc) · 878 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
29
30
31
32
33
34
name: 'Dominos Action'
description: 'Orders a 🍕 from Dominos'
author: 'mattdsteele'
inputs:
github-token:
description: 'pass GITHUB_TOKEN here'
address:
description: 'Address in comma-separated value. Example: 700 Clark Ave, St. Louis, MO, 63102'
order-type:
description: 'Delivery or Carryout'
default: 'Delivery'
email:
description: 'Email address'
phone:
description: 'Phone number'
first-name:
description: 'First Name'
last-name:
description: 'Last Name'
card-number:
description: 'CC #'
expiration:
description: 'Example: 0115 ;// 01/15 just the numbers "01/15"'
security-code:
description: 'CVV number'
card-postal-code:
description: 'Postal code for credit card'
active:
description: 'Whether to actually order a pizza'
default: 'false'
runs:
using: 'node12'
main: 'dist/index.js'