mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 00:47:04 +02:00
feat: Create a custom action to verify chart version
This commit is contained in:
parent
c598d8a00a
commit
b4b335ca6e
14 changed files with 25241 additions and 51 deletions
16
.github/actions/verify-chart-version/action.yml
vendored
Normal file
16
.github/actions/verify-chart-version/action.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: 'Verify Helm chart version bump'
|
||||
description: 'Checks if the Helm chart version number has been bumped'
|
||||
inputs:
|
||||
chart:
|
||||
description: 'Which chart to check'
|
||||
required: true
|
||||
base:
|
||||
description: 'Ref to compare against'
|
||||
required: false
|
||||
token:
|
||||
description: 'GitHub token'
|
||||
default: '${{ github.token }}'
|
||||
required: true
|
||||
runs:
|
||||
using: 'node16'
|
||||
main: 'dist/index.js'
|
Loading…
Add table
Add a link
Reference in a new issue