-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
38 lines (36 loc) · 990 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
name: Container image and Helm chart versions update Action
description: "Action to update container image and Helm versions."
branding:
icon: "arrow-down-circle"
color: purple
inputs:
versions-file:
description: Path to the versions file.
required: true
skip-container:
description: true if you want to update only Container images.
required: false
default: "false"
skip-helm:
description: true if you want to update only Helm chart.
required: false
default: "false"
version-type:
description: "Which maximun version change you expect to find. It can be: 'major', 'minor' and 'patch'"
required: false
default: "minor"
outputs: {}
runs:
using: "docker"
image: "Dockerfile"
args:
- -m
- update_versions
- --versions-file
- ${{ inputs.versions-file }}
- --skip-container
- ${{ inputs.skip-container }}
- --skip-helm
- ${{ inputs.skip-helm }}
- --version-type
- ${{ inputs.version-type }}