From c705885ddae86f68779118386bb5f03a75106d4f Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sat, 29 Nov 2025 22:03:01 -0600 Subject: [PATCH] fix path --- .gitea/workflows/render-manifests.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/render-manifests.yaml b/.gitea/workflows/render-manifests.yaml index c13891bd0..00503cf3d 100644 --- a/.gitea/workflows/render-manifests.yaml +++ b/.gitea/workflows/render-manifests.yaml @@ -35,7 +35,7 @@ jobs: for cluster in $CLUSTERS; do 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") echo "" @@ -54,11 +54,13 @@ jobs: done - name: Create Pull Request + id: pull-request uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.GITEA_TOKEN }} commit-message: "chore: Update manifests after chart change" branch: auto/update-manifests + branch-suffix: timestamp base: manifests title: "Manifest Update: App Changes" body: | @@ -66,19 +68,22 @@ jobs: * Triggered by workflow run ${{ github.run_id }} * Review the `files changed` tab for the full YAML diff. + labels: | + manifests + automated add-paths: "clusters/*/rendered-manifests/" - - name: ntfy Success + - name: ntfy Created uses: niniyas/ntfy-action@master - if: success() + if: steps.pull-request.outputs.pull-request-operation == 'created' with: url: "${{ secrets.NTFY_URL }}" topic: "${{ secrets.NTFY_TOPIC }}" - title: "Manifest Render Success - Infrastructure" + title: "Manifest Render PR Created - Infrastructure" priority: 3 headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}' tags: action,successfully,completed - details: "Manifest rendering for Infrastructure has succeeded" + details: "Manifest rendering for Infrastructure has created PR ${{ steps.pull-request.outputs.pull-request-number }}!" icon: "https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png" - name: ntfy Failed