From 89e257f2f573d4ea3030fc792458ff5860ebdab4 Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Thu, 17 Apr 2025 21:10:03 -0400 Subject: [PATCH] Livin' off borrowed time, the clock ticks faster --- .gitea/workflows/build.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index bfb4806..d790b2c 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -135,7 +135,7 @@ jobs: - name: 💾✅ Commit Updated Manifest uses: EndBug/add-and-commit@v9 with: - new_branch: ${{ gitea.ref_name }}-deploy + new_branch: release/${{ gitea.ref_name }}-deploy add: argocd/deployment/deployment.yml author_name: "GitHub Action 🤖" author_email: gitia@siteworxpro.com @@ -144,10 +144,12 @@ jobs: - name: 🚀✨ Create Pull Request uses: peter-evans/create-pull-request@v7 with: + author: "GitHub Action 🤖" + token: ${{ secrets.GITEA_TOKEN }} title: "🚀✨ Deploy Application Version ${{ gitea.ref_name }}" - body: "This PR updates the deployment manifest with new image tags." - base: master - head: ${{ gitea.ref_name }}-deploy + branch: release/${{ gitea.ref_name }}-deploy commit-message: "📝🔄 Update deployment manifest with new image tags" - labels: deploy - delete-branch: true \ No newline at end of file + body: | + This pull request updates the deployment manifest with the new image tags for version `${{ gitea.ref_name }}`. + Please review and merge to deploy the new version. + labels: deploy \ No newline at end of file