Skip to content

Commit a2f8923

Browse files
committed
syntax errors
1 parent b1d0b14 commit a2f8923

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/delete-review-app.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff 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

.github/workflows/deploy-to-control-plane-review-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)