-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
53 lines (49 loc) · 1.38 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
name: 'Diff Helm Chart'
description: 'A Github action diff helm charts'
author: 'fivekoalas'
branding:
icon: cloud
color: orange
inputs:
targetChartPath:
description: 'The path to the chart to be compared'
required: true
currentChartPath:
description: 'The path to the chart to be compared'
required: true
valuesPath:
description: 'The path to the file containing the values'
required: false
default: 'values-dev.yaml'
targetValuesRepo:
description: 'The repository containing the target values'
required: false
currentValuesRepo:
description: 'The repository containing the current values'
required: true
currentValuesBranch:
description: 'The branch containing the current values'
required: false
default: 'develop'
token:
description: 'The Github token'
default: '${{ github.token }}'
required: false
targetBranchRegex:
description: 'The regex to match the target branch on pull requests body'
default: 'target: (.*)'
required: false
asMarkdown:
description: 'Whether to format the output as markdown'
default: 'true'
required: false
runs:
using: 'node20'
main: 'dist/index.js'
outputs:
changed:
description: 'Whether the charts are different'
diff:
description: 'The diff between the charts'
targetTemplate:
description: 'The target chart rendered with the target values'