forked from IAmHughes/giphy-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
24 lines (24 loc) · 992 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
name: 'GIPHY Url Generator'
description: 'return action outputs.url to be combined with another action like slack notification'
author: 'shokme'
inputs:
limit:
description: 'The number of result to be returned'
required: false
query:
description: 'Used to filter gif by the given search term.'
required: true
rating:
description: 'The content rating used to filter results from the GIF search. Default: `g`'
required: false
default: 'g' # Other options documented in the GIPHY API docs: https://developers.giphy.com/docs/optional-settings#rating
lang:
description: 'The default language that the search query is in. Default: `en` for English'
required: false
default: 'en' # Other options documented in the GIPHY API docs: https://developers.giphy.com/docs/optional-settings#language-support
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'clock' # Icon picked from Feather icons: https://feathericons.com/
color: 'orange'