From 2ba863bb9895178e284e313f8f734638c8ef060d Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sun, 30 Nov 2025 16:48:57 -0600 Subject: [PATCH] change --- .gitea/workflows/render-manifests.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/render-manifests.yaml b/.gitea/workflows/render-manifests.yaml index 48ebe007c..cee2e1518 100644 --- a/.gitea/workflows/render-manifests.yaml +++ b/.gitea/workflows/render-manifests.yaml @@ -144,23 +144,22 @@ jobs: --arg head "${HEAD_BRANCH}" \ --arg base "${BASE_BRANCH}" \ --arg title "Automated Manifest Update: $(date +%F)" \ - --arg body "This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow" \ + --arg body "This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow." \ '{head: $head, base: $base, title: $title, body: $body'} ) - echo ">> Creating PR from branch: ${HEAD_BRANCH} into ${BASE_BRANCH}" + echo ">> Creating PR from branch ${HEAD_BRANCH} into ${BASE_BRANCH}" echo ">> With Payload of:" echo "$PAYLOAD" - HTTP_STATUS=$( + #HTTP_STATUS=$( curl -X POST \ --silent \ - --write-out '%{http_code}' \ - --output /tmp/pr_response \ + --data "${PAYLOAD}" \ -H "Authorization: token ${GITEA_TOKEN}" \ -H "Content-Type: application/json" \ "${API_ENDPOINT}" - ) + #) echo ">> Gitea API Response Body ..." echo "----"