Skip to content

DEV-3285: Auto increment helm chart versions #1

DEV-3285: Auto increment helm chart versions

DEV-3285: Auto increment helm chart versions #1

Workflow file for this run

name: Bump Chart Versions
on:
push:
branches:
- david/DEV-3285-auto-increment-helm-chart-versions
jobs:
bump-version:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
with:
dir_names: true
dir_names_max_depth: 2
json: true
quotepath: false
- name: List changed files
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
for file in "$ALL_CHANGED_FILES"; do
echo "$file was changed"
done