Skip to content

Commit

Permalink
DEV-3285: Auto increment helm chart versions
Browse files Browse the repository at this point in the history
  • Loading branch information
otterobert committed Jan 3, 2024
1 parent 5efa246 commit a25eb13
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/bump-version.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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

0 comments on commit a25eb13

Please sign in to comment.