Skip to content

Commit 9c3c157

Browse files
committed
fix: test commit for debug
Signed-off-by: hlts2 <[email protected]>
1 parent 5f712c6 commit 9c3c157

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/test.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: test
2+
on:
3+
pull_request:
4+
5+
env:
6+
# TODO: Check secrets
7+
GITHUB_USER: ${{ secrets.DISPATCH_USER }}
8+
GITHUB_TOKEN: ${{ secrets.DISPATCH_TOKEN }}
9+
10+
jobs:
11+
e2e:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
- name: Set Git config
18+
run: |
19+
git config --global --add safe.directory ${GITHUB_WORKSPACE}
20+
21+
toch test.txt
22+
23+
git remote set-url origin https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY
24+
git add test.txt
25+
git commit -S --signoff -m "test commit"
26+
git push

0 commit comments

Comments
 (0)