1 Commits

Author SHA1 Message Date
c751b441cf Update php Docker tag to v8.5.0
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
lint-test-helm / lint-pull-request (pull_request) Failing after 18s
2025-12-04 01:50:39 +00:00

View File

@@ -7,19 +7,14 @@ on:
paths:
- 'clusters/*/helm/**'
push:
branches:
- main
paths:
- 'clusters/*/helm/**'
env:
CLUSTER: cl01tl
BASE_BRANCH: "origin/${{ gitea.base_ref }}"
jobs:
lint-helm:
lint-pull-request:
runs-on: ubuntu-js
if: github.event_name == 'pull_request'
steps:
- name: Checkout
uses: actions/checkout@v6
@@ -33,11 +28,11 @@ jobs:
with:
branch: ${{ gitea.base_ref }}
- name: Report Branch Exists
- name: Branch Exists
id: branch-exists
if: github.event_name == 'push' || steps.check-branch-exists.outputs.exists == 'true' && github.event_name == 'pull_request'
run: |
echo ">> Branch ${{ gitea.base_ref }} exists, will continue with linting"
echo ">> Branch ${{ gitea.base_ref }} is exists, will continue with linting"
echo "----"
@@ -58,7 +53,6 @@ jobs:
echo ">> Target branch for diff is: ${BASE_BRANCH}"
echo ""
echo ">> Checking for changes ..."
git diff --name-only "${BASE_BRANCH}" -- | xargs -I {} dirname {} | sort -u | grep 'clusters/*/helm/'
GIT_DIFF=$(git diff --name-only "${BASE_BRANCH}" -- | xargs -I {} dirname {} | sort -u | grep 'clusters/*/helm/')
if [ -n "${GIT_DIFF}" ]; then