Update Strimzi cluster version #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: version | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Verify Changed files | |
uses: tj-actions/verify-changed-files@v19 | |
id: check | |
with: | |
files: | | |
charts/dataplane/Chart.yaml | |
pyproject.toml | |
- name: Fail if version has not been updated | |
if: steps.check.outputs.files_changed == 'true' | |
run: exit 1 |