1 Commits

Author SHA1 Message Date
fce96c7d8a Update php Docker tag to v8.5.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
lint-test-helm / helm-lint (pull_request) Successful in 12s
2025-11-30 03:50:50 +00:00

View File

@@ -35,7 +35,7 @@ jobs:
for cluster in $CLUSTERS; do for cluster in $CLUSTERS; do
mkdir clusters/$CLUSTER/manifests mkdir clusters/$CLUSTER/manifests
for chart_path in clusters/$CLUSTER/helm/*; do for chart_path in clusters/$CLUSTER/helm/; do
chart_name=$(basename "$chart_path") chart_name=$(basename "$chart_path")
echo "" echo ""
@@ -54,13 +54,11 @@ jobs:
done done
- name: Create Pull Request - name: Create Pull Request
id: pull-request
uses: peter-evans/create-pull-request@v7 uses: peter-evans/create-pull-request@v7
with: with:
token: ${{ secrets.GITEA_TOKEN }} token: ${{ secrets.GITEA_TOKEN }}
commit-message: "chore: Update manifests after chart change" commit-message: "chore: Update manifests after chart change"
branch: auto/update-manifests branch: auto/update-manifests
branch-suffix: timestamp
base: manifests base: manifests
title: "Manifest Update: App Changes" title: "Manifest Update: App Changes"
body: | body: |
@@ -68,22 +66,19 @@ jobs:
* Triggered by workflow run ${{ github.run_id }} * Triggered by workflow run ${{ github.run_id }}
* Review the `files changed` tab for the full YAML diff. * Review the `files changed` tab for the full YAML diff.
labels: |
manifests
automated
add-paths: "clusters/*/rendered-manifests/" add-paths: "clusters/*/rendered-manifests/"
- name: ntfy Created - name: ntfy Success
uses: niniyas/ntfy-action@master uses: niniyas/ntfy-action@master
if: steps.pull-request.outputs.pull-request-operation == 'created' if: success()
with: with:
url: "${{ secrets.NTFY_URL }}" url: "${{ secrets.NTFY_URL }}"
topic: "${{ secrets.NTFY_TOPIC }}" topic: "${{ secrets.NTFY_TOPIC }}"
title: "Manifest Render PR Created - Infrastructure" title: "Manifest Render Success - Infrastructure"
priority: 3 priority: 3
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}' headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
tags: action,successfully,completed tags: action,successfully,completed
details: "Manifest rendering for Infrastructure has created PR ${{ steps.pull-request.outputs.pull-request-number }}!" details: "Manifest rendering for Infrastructure has succeeded"
icon: "https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png" icon: "https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png"
- name: ntfy Failed - name: ntfy Failed