Skip to content

Commit

Permalink
ci: run helm lint only on push to branches
Browse files Browse the repository at this point in the history
  • Loading branch information
yorugac committed Nov 7, 2023
1 parent 04934f6 commit b6cc005
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/helm-lint.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
---
name: Helm Lint
on: [push]
on:
# `ct lint` does not work well with tag references on releases.
# OTOH, Helm linting on tags is not necessary so long as it
# happens on push to branches.
push:
branches:
- '**'

jobs:
lintAllTheThings:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit b6cc005

Please sign in to comment.