File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 16
16
ref : ${{ github.event.workflow_run.head_branch }}
17
17
fetch-depth : 0
18
18
19
+ - name : Debug Workflow Info
20
+ run : |
21
+ echo "Workflow Run ID: ${{ github.event.workflow_run.id }}"
22
+ echo "Workflow Head SHA: ${{ github.event.workflow_run.head_sha }}"
23
+ echo "Current SHA: ${{ github.sha }}"
24
+ echo "Head Branch: ${{ github.event.workflow_run.head_branch }}"
25
+ echo "Repository: ${{ github.event.workflow_run.head_repository.full_name }}"
26
+
27
+ # Output raw context for additional details
28
+ echo "=== Raw Context ==="
29
+ echo "Workflow Head SHA: ${{ github.event.workflow_run }}"
30
+
31
+ - name : ' Raw Context'
32
+ uses : actions/github-script@v6
33
+ with :
34
+ script : |
35
+ JSON.stringify(${{ github.event.workflow_run }}, null, 2)
36
+
19
37
# Download reports
20
38
- uses : ./.github/actions/download-coverage-report
21
39
with :
You can’t perform that action at this time.
0 commit comments