From ffc9e14132d29ab3eb101d4ee119c0400b092224 Mon Sep 17 00:00:00 2001 From: Petri Vuorio <21276470+petringo@users.noreply.github.com> Date: Wed, 16 Oct 2024 16:46:35 +0300 Subject: [PATCH] Ignore GeoWeb charts in openshift-install action. (#99) --- .github/workflows/openshift-install.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/openshift-install.yml b/.github/workflows/openshift-install.yml index de19874..1be0fbe 100644 --- a/.github/workflows/openshift-install.yml +++ b/.github/workflows/openshift-install.yml @@ -1,10 +1,13 @@ name: Install chart to Openshift -on: pull_request # yamllint disable-line rule:truthy +on: + pull_request: + paths-ignore: + - 'charts/geoweb-*/**' jobs: lint-test: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v3