We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f143ce commit 96f6007Copy full SHA for 96f6007
action.yml
@@ -3,11 +3,12 @@ name: 'Container Action Template'
3
description: 'Get started with Container actions'
4
author: 'GitHub'
5
inputs:
6
- myInput:
7
- description: 'Input to use'
8
- default: 'world'
+ labels:
+ description: 'A JSON array of labels, exactly one of which must be present'
+ default: '[]'
9
+ required: true
10
runs:
11
using: 'docker'
12
image: 'Dockerfile'
13
args:
- - ${{ inputs.myInput }}
14
+ - ${{ inputs.labels }}
0 commit comments