Skip to content

Commit

Permalink
Don't run helm-test on chart updates
Browse files Browse the repository at this point in the history
Signed-off-by: Abhishek Mishra <[email protected]>
  • Loading branch information
amibhi committed Apr 11, 2023
1 parent 3164b53 commit 1688191
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/on-safe-to-test-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,18 +169,18 @@ jobs:
run: |
make kind-cluster-delete
- name: Run helm test
if: ${{ always() }}
if: ${{ !contains(github.event.pull_request.labels.*.name, 'chart update') }}
run: |
make helm-test
- name: Copy Kind logs to S3
if: ${{ always() }}
if: ${{ !contains(github.event.pull_request.labels.*.name, 'chart update') }}
run: |
mkdir logs-helm-test
export E2E_ARTIFACTS_DIRECTORY=logs-helm-test
make kind-export-logs
aws s3 cp --recursive logs-helm-test s3://aws-privateca-issuer-k8s-logs-test-us-east-1/${{ needs.start-runner.outputs.ec2-instance-id }}-logs-helm-test/
- name: Terminate Kind cluster
if: ${{ always() }}
if: ${{ !contains(github.event.pull_request.labels.*.name, 'chart update') }}
run: |
make kind-cluster-delete
- name: Run Blog Test
Expand Down

0 comments on commit 1688191

Please sign in to comment.