From 85cd32d7ac9f15015d9990ed4e5f15e2baa9bd8c Mon Sep 17 00:00:00 2001 From: Charlie Savage Date: Sun, 28 Jan 2024 21:16:10 -0800 Subject: [PATCH] Enable lint workflows to run on push, release or pull requests instead of just pull requests --- .github/workflows/on-push-lint-charts.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/on-push-lint-charts.yml b/.github/workflows/on-push-lint-charts.yml index 904592cd..52a28087 100644 --- a/.github/workflows/on-push-lint-charts.yml +++ b/.github/workflows/on-push-lint-charts.yml @@ -1,14 +1,14 @@ name: Lint and Test Charts on: - # push: - # paths: - # - 'charts/**' - # - '.github/**' + push: + paths: + - 'charts/**' + - '.github/**' pull_request: paths: - - 'charts/**' - - '.github/**' + - 'charts/**' + - '.github/**' workflow_dispatch: env: @@ -16,7 +16,7 @@ env: HELM_VERSION: v3.13.2 concurrency: - group: ${{ github.head_ref }} + group: ${{ github.ref }} cancel-in-progress: true jobs: