-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
33 lines (33 loc) · 962 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
name: 'Issuetron-3000'
branding:
icon: 'alert-octagon'
color: 'yellow'
description: 'A GitHub action to turn on a light in the physical world when someone opens an issue on your repo'
inputs:
time:
description: 'How much time will we keep the light on (in seconds) (default: 10 seconds)'
required: false
default: '10'
blink:
description: 'Would you like to enable blinking? (default: true)'
required: false
default: 'true'
io_user:
description: 'Your Adafruit IO username'
required: true
io_key:
description: 'Your Adafruit IO key'
required: true
io_feed:
description: 'Your Adafruit Feed name'
required: true
send_context:
description: 'Would you like to send context info to your device? (default: true)'
required: false
default: 'true'
outputs:
success:
description: 'We will inform you if we were able to reach your IoT device'
runs:
using: 'node12'
main: 'dist/index.js'