-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yaml
More file actions
40 lines (38 loc) · 1000 Bytes
/
action.yaml
File metadata and controls
40 lines (38 loc) · 1000 Bytes
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
35
36
37
38
39
40
---
name: Trigger AWX
author: Alan B. Christie
description: Launches a named Template on an AWX server
branding:
icon: play
color: orange
inputs:
template:
description: The name of the template to run
required: true
template-host:
description: The hostname of the AWX server, i.e. 'https://example.com'
required: true
template-user:
description: The username of a user that can execute the template
required: true
template-user-password:
description: The template user's password
required: true
template-var:
description: A template variable
required: false
default: image_tag
template-var-value:
description: A value for the template variable
required: false
default: latest
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.template }}
- ${{ inputs.template-host }}
- ${{ inputs.template-user }}
- ${{ inputs.template-user-password }}
- ${{ inputs.template-var }}
- ${{ inputs.template-var-value }}