From 4d7fcdc3246cfb1b96af54e9a3b2a2ad5f996056 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Wed, 3 Dec 2025 17:54:11 -0600 Subject: [PATCH] fix json --- .gitea/workflows/render-manifests-automerge.yaml | 4 ++-- .gitea/workflows/render-manifests-dispatch.yaml | 2 +- .gitea/workflows/render-manifests-merge.yaml | 2 +- .gitea/workflows/render-manifests-push.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/render-manifests-automerge.yaml b/.gitea/workflows/render-manifests-automerge.yaml index 84222cbd4..1a876d016 100644 --- a/.gitea/workflows/render-manifests-automerge.yaml +++ b/.gitea/workflows/render-manifests-automerge.yaml @@ -258,9 +258,9 @@ jobs: PAYLOAD=$( jq -n \ --arg head "${BRANCH_NAME}" \ --arg base "${BASE_BRANCH}" \ - --arg title "Automated Manifest Update" \ + --arg title "Automated Manifest Update - Automerge" \ --arg body "This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. This is expected to be automerged." \ - '{head: $head, base: $base, title: $title, body: $body'} ) + '{head: $head, base: $base, title: $title, body: $body}' ) echo ">> Creating PR from branch ${BRANCH_NAME} into ${BASE_BRANCH}" echo ">> With Endpoint of:" diff --git a/.gitea/workflows/render-manifests-dispatch.yaml b/.gitea/workflows/render-manifests-dispatch.yaml index 3a5ea2927..66fa1f5c8 100644 --- a/.gitea/workflows/render-manifests-dispatch.yaml +++ b/.gitea/workflows/render-manifests-dispatch.yaml @@ -300,7 +300,7 @@ jobs: --arg assignee "${ASSIGNEE}" \ --arg title "Automated Manifest Update" \ --arg body "This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow." \ - '{head: $head, base: $base, assignee: $assignee, title: $title, body: $body'} ) + '{head: $head, base: $base, assignee: $assignee, title: $title, body: $body}' ) echo ">> Creating PR from branch ${HEAD_BRANCH} into ${BASE_BRANCH}" echo ">> With Endpoint of:" diff --git a/.gitea/workflows/render-manifests-merge.yaml b/.gitea/workflows/render-manifests-merge.yaml index 8e253a973..ec6d7f5f2 100644 --- a/.gitea/workflows/render-manifests-merge.yaml +++ b/.gitea/workflows/render-manifests-merge.yaml @@ -319,7 +319,7 @@ jobs: --arg assignee "${ASSIGNEE}" \ --arg title "Automated Manifest Update" \ --arg body "This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow." \ - '{head: $head, base: $base, assignee: $assignee, title: $title, body: $body'} ) + '{head: $head, base: $base, assignee: $assignee, title: $title, body: $body}' ) echo ">> Creating PR from branch ${HEAD_BRANCH} into ${BASE_BRANCH}" echo ">> With Endpoint of:" diff --git a/.gitea/workflows/render-manifests-push.yaml b/.gitea/workflows/render-manifests-push.yaml index 72e36e89f..1081a79b9 100644 --- a/.gitea/workflows/render-manifests-push.yaml +++ b/.gitea/workflows/render-manifests-push.yaml @@ -317,7 +317,7 @@ jobs: --arg assignee "${ASSIGNEE}" \ --arg title "Automated Manifest Update" \ --arg body "This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow." \ - '{head: $head, base: $base, assignee: $assignee, title: $title, body: $body'} ) + '{head: $head, base: $base, assignee: $assignee, title: $title, body: $body}' ) echo ">> Creating PR from branch ${HEAD_BRANCH} into ${BASE_BRANCH}" echo ">> With Endpoint of:"