File tree Expand file tree Collapse file tree 2 files changed +16
-9
lines changed Expand file tree Collapse file tree 2 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 89
89
90
90
- name : Enable next step workflow
91
91
run : |
92
+ gh workflow disable "Step 0"
92
93
gh workflow enable "Step 1"
93
- env :
94
- GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
95
-
96
- - name : Confirm workflows visible and enabled
97
- run : |
98
- echo "Listing all workflows:"
99
- gh workflow list
100
- echo "Checking Step 1 YAML:"
101
- gh workflow view "Step 1" --yaml
102
94
env :
103
95
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 57
57
gh workflow enable "Step 2"
58
58
env :
59
59
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
60
+
61
+ - name : Debug - print event payload
62
+ run : |
63
+ echo "EVENT PAYLOAD:"
64
+ cat $GITHUB_EVENT_PATH
65
+
66
+ - name : Debug - list files
67
+ run : |
68
+ echo "Current directory: $(pwd)"
69
+ ls -al
70
+ echo "Contents of .github/steps:"
71
+ ls -al .github/steps || echo ".github/steps does not exist"
72
+
73
+ - name : Debug - print environment variables
74
+ run : env
You can’t perform that action at this time.
0 commit comments