@panoptic-it-solutions/coolify-setup 1.1.29 → 1.1.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/templates/workflow.js +2 -12
- package/package.json +1 -1
|
@@ -76,12 +76,7 @@ jobs:
|
|
|
76
76
|
owner: context.repo.owner,
|
|
77
77
|
repo: context.repo.repo,
|
|
78
78
|
title: \`Deploy: \${sourceBranch} -> \${targetBranch}\`,
|
|
79
|
-
body: \`Automated deployment PR from \${sourceBranch} to \${targetBranch}.
|
|
80
|
-
|
|
81
|
-
**Commit:** \${{ steps.sha.outputs.sha }}
|
|
82
|
-
**Image:** \${{ env.REGISTRY }}/\${{ env.PROJECT_NAME }}-app:\${{ steps.sha.outputs.sha }}
|
|
83
|
-
|
|
84
|
-
Merge this PR to trigger deployment.\`,
|
|
79
|
+
body: \`Automated deployment PR from \${sourceBranch} to \${targetBranch}.\\n\\n**Commit:** \${{ steps.sha.outputs.sha }}\\n**Image:** \${{ env.REGISTRY }}/\${{ env.PROJECT_NAME }}-app:\${{ steps.sha.outputs.sha }}\\n\\nMerge this PR to trigger deployment.\`,
|
|
85
80
|
head: sourceBranch,
|
|
86
81
|
base: targetBranch
|
|
87
82
|
});
|
|
@@ -114,12 +109,7 @@ Merge this PR to trigger deployment.\`,
|
|
|
114
109
|
owner: context.repo.owner,
|
|
115
110
|
repo: context.repo.repo,
|
|
116
111
|
title: 'Deploy to Production: staging -> main',
|
|
117
|
-
body: \`Promote staging to production.
|
|
118
|
-
|
|
119
|
-
**Commit:** \${{ steps.sha.outputs.sha }}
|
|
120
|
-
**Image:** \${{ env.REGISTRY }}/\${{ env.PROJECT_NAME }}-app:\${{ steps.sha.outputs.sha }}
|
|
121
|
-
|
|
122
|
-
Merge this PR to deploy to production.\`,
|
|
112
|
+
body: \`Promote staging to production.\\n\\n**Commit:** \${{ steps.sha.outputs.sha }}\\n**Image:** \${{ env.REGISTRY }}/\${{ env.PROJECT_NAME }}-app:\${{ steps.sha.outputs.sha }}\\n\\nMerge this PR to deploy to production.\`,
|
|
123
113
|
head: 'staging',
|
|
124
114
|
base: 'main'
|
|
125
115
|
});
|