Skip to content

Commit 9139e82

Browse files
committed
add debug workflow
1 parent 2dc127d commit 9139e82

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/debug.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Debug
2+
3+
on:
4+
push:
5+
branches:
6+
- debug
7+
8+
workflow_dispatch:
9+
10+
jobs:
11+
fetch:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
with:
18+
token: ${{ secrets.BOT_TOKEN }}
19+
20+
- name: Show and tell
21+
run: |
22+
ls -a
23+
tree

0 commit comments

Comments
 (0)