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:
116
116
issue_number: process.env.PR_NUMBER,
117
117
owner: context.repo.owner,
118
118
repo: context.repo.repo,
119
- body: '🗑️ Starting app deletion...'
120
119
body: [
121
120
message,
122
121
'',
@@ -167,3 +166,15 @@ jobs:
167
166
comment_id: ${{ fromJSON(steps.create-delete-comment.outputs.result).commentId }},
168
167
body: success ? successMessage : failureMessage
169
168
});
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:
376
376
await github.rest.issues.updateComment({
377
377
owner: context.repo.owner,
378
378
repo: context.repo.repo,
379
- comment_id: ${{ steps.create-comment .outputs.comment-id }},
379
+ comment_id: ${{ needs.build .outputs.comment_id }},
380
380
body: deployingMessage
381
381
});
382
382
You can’t perform that action at this time.
0 commit comments