🔧 Update action.yml

This commit is contained in:
Simon Schneegans
2020-08-15 12:11:58 +02:00
parent ed18a71a87
commit fc01f28e44

View File

@@ -1,13 +1,29 @@
name: 'Hello World' name: 'Dynamic Badges'
description: 'Greet someone and record the time' description: 'Uses shields.io to create custom badges and uploads them to a gist.'
branding:
icon: 'tag'
color: 'green'
inputs: inputs:
who-to-greet: # id of input auth:
description: 'Who to greet' description: 'Your secret with the gist scope'
required: true required: true
default: 'World' gistID:
outputs: description: 'The ID of the gist to use'
time: # id of output required: true
description: 'The time we greeted you' label:
description: 'The left text of the badge'
required: true
message:
description: 'The right text of the badge'
required: true
labelColor:
description: 'The left color of the badge'
required: false
default: 'grey'
color:
description: 'The right color of the badge'
required: false
default: 'lightgrey'
runs: runs:
using: 'node12' using: 'node12'
main: 'index.js' main: 'index.js'