-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
43 lines (33 loc) · 917 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
34
35
36
37
38
39
40
41
name: 'edzyaml'
description: 'A github action to pass values to yaml file'
inputs:
git_username:
description: 'github username'
required: true
git_user_email:
description: 'github user email'
required: true
git_token:
description: 'github personal access token'
required: true
git_repo:
description: 'github remote repo where you want to update yaml file'
required: true
yaml_file_path:
description: 'yaml file path '
required: true
# file_name:
# description: 'yaml file name'
# required: true
yaml_key_path:
description: 'yaml file key example, spec.template.spec.containers.0.image '
required: true
yaml_value:
description: 'yaml file new value to be pass to yaml key path'
required: true
outputs:
result:
description: 'value changed to remote repo yaml'
runs:
using: 'docker'
image: 'Dockerfile'