Livin' off borrowed time, the clock ticks faster

This commit is contained in:
2025-04-17 21:10:03 -04:00
parent ee36f3f6d8
commit 89e257f2f5

View File

@@ -135,7 +135,7 @@ jobs:
- name: 💾✅ Commit Updated Manifest - name: 💾✅ Commit Updated Manifest
uses: EndBug/add-and-commit@v9 uses: EndBug/add-and-commit@v9
with: with:
new_branch: ${{ gitea.ref_name }}-deploy new_branch: release/${{ gitea.ref_name }}-deploy
add: argocd/deployment/deployment.yml add: argocd/deployment/deployment.yml
author_name: "GitHub Action 🤖" author_name: "GitHub Action 🤖"
author_email: gitia@siteworxpro.com author_email: gitia@siteworxpro.com
@@ -144,10 +144,12 @@ jobs:
- name: 🚀✨ Create Pull Request - name: 🚀✨ Create Pull Request
uses: peter-evans/create-pull-request@v7 uses: peter-evans/create-pull-request@v7
with: with:
author: "GitHub Action 🤖"
token: ${{ secrets.GITEA_TOKEN }}
title: "🚀✨ Deploy Application Version ${{ gitea.ref_name }}" title: "🚀✨ Deploy Application Version ${{ gitea.ref_name }}"
body: "This PR updates the deployment manifest with new image tags." branch: release/${{ gitea.ref_name }}-deploy
base: master
head: ${{ gitea.ref_name }}-deploy
commit-message: "📝🔄 Update deployment manifest with new image tags" commit-message: "📝🔄 Update deployment manifest with new image tags"
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 labels: deploy
delete-branch: true