We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f712c6 commit 9c3c157Copy full SHA for 9c3c157
.github/workflows/test.yaml
@@ -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