feat: Create a custom action to verify chart version

This commit is contained in:
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 2022-07-28 17:01:37 +02:00 committed by GitHub
parent c598d8a00a
commit b4b335ca6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 25241 additions and 51 deletions

View 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'