File tree Expand file tree Collapse file tree 1 file changed +5
-11
lines changed
Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -260,18 +260,12 @@ jobs:
260260 env :
261261 GITHUB_TOKEN : ${{ secrets.MERGE_QUEUE_PAT }}
262262
263- - name : Verify Final CI Status
264- id : check_status
265- if : |
266- steps.check_label.outputs.has_auto_merge_label == 'true' &&
267- steps.wait_for_ci.outputs.checks_status == 'SUCCESS'
263+ - name : Debug Before Enqueue
264+ if : steps.check_label.outputs.has_auto_merge_label == 'true'
268265 run : |
269- PR_NUMBER="${{ steps.get_pr.outputs.pr_number }}"
270- CHECKS_STATUS="${{ steps.wait_for_ci.outputs.checks_status }}"
271- echo "Final CI Status: $CHECKS_STATUS"
272- echo "checks_status=$CHECKS_STATUS" >> $GITHUB_OUTPUT
273- env :
274- GITHUB_TOKEN : ${{ secrets.MERGE_QUEUE_PAT }}
266+ echo "DEBUG: Auto-merge label check: ${{ steps.check_label.outputs.has_auto_merge_label }}"
267+ echo "DEBUG: Wait for CI output: ${{ steps.wait_for_ci.outputs.checks_status }}"
268+ echo "DEBUG: Should proceed to enqueue: $([ '${{ steps.wait_for_ci.outputs.checks_status }}' == 'SUCCESS' ] && echo 'YES' || echo 'NO')"
275269
276270 - name : Add to Merge Queue
277271 if : |
You can’t perform that action at this time.
0 commit comments