diff --git a/.github/workflows/clear_validation_status.yaml b/.github/workflows/clear_validation_status.yaml new file mode 100644 index 00000000..e13027a4 --- /dev/null +++ b/.github/workflows/clear_validation_status.yaml @@ -0,0 +1,13 @@ +name: Validate Chart Version + +on: + deployment: + pull_request: + paths-ignore: + - "charts/**" + +jobs: + build: + runs-on: ubuntu-20.04 + steps: + - run: 'echo "No validate status check required"' diff --git a/.github/workflows/validate_chart_release.yaml b/.github/workflows/validate_chart_release.yaml index f802f33e..09c0263e 100644 --- a/.github/workflows/validate_chart_release.yaml +++ b/.github/workflows/validate_chart_release.yaml @@ -3,6 +3,8 @@ name: Validate Chart Version on: deployment: pull_request: + paths: + - "charts/**" jobs: validate: @@ -29,4 +31,4 @@ jobs: run: .github/scripts/helm_lint.sh - name: Validate chart version - run: .github/scripts/validate_chart_version.sh \ No newline at end of file + run: .github/scripts/validate_chart_version.sh