File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,6 @@ jobs:
116116 issue_number: process.env.PR_NUMBER,
117117 owner: context.repo.owner,
118118 repo: context.repo.repo,
119- body: '🗑️ Starting app deletion...'
120119 body: [
121120 message,
122121 '',
@@ -167,3 +166,15 @@ jobs:
167166 comment_id: ${{ fromJSON(steps.create-delete-comment.outputs.result).commentId }},
168167 body: success ? successMessage : failureMessage
169168 });
169+
170+ - name : Debug Environment
171+ run : |
172+ echo "Organization: ${{ env.CPLN_ORG }}"
173+ echo "App Name: ${{ env.APP_NAME }}"
174+ echo "PR Number: ${{ env.PR_NUMBER }}"
175+ # Don't echo the actual token, but verify it exists
176+ if [ -n "${{ env.CPLN_TOKEN }}" ]; then
177+ echo "CPLN_TOKEN is set"
178+ else
179+ echo "CPLN_TOKEN is empty"
180+ fi
Original file line number Diff line number Diff line change @@ -376,7 +376,7 @@ jobs:
376376 await github.rest.issues.updateComment({
377377 owner: context.repo.owner,
378378 repo: context.repo.repo,
379- comment_id: ${{ steps.create-comment .outputs.comment-id }},
379+ comment_id: ${{ needs.build .outputs.comment_id }},
380380 body: deployingMessage
381381 });
382382
You can’t perform that action at this time.
0 commit comments