We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 1d306ffCopy full SHA for 1d306ff
1 file changed
.github/workflows/tailnet_test.yml
@@ -0,0 +1,18 @@
1
+# This is a basic workflow to help you get started with Actions
2
+
3
+name: CI
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
9
+jobs:
10
+ test-funnel:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Test Tailscale Funnel
14
+ run: |
15
+ curl -X GET \
16
+ http://dcworkshop1.tailbf22ca.ts.net/github-webhook \
17
+ -H 'Content-Type: application/json' \
18
+ -d '{"commits": [{"author": "Test Author", "message": "Test Commit"}]}'
0 commit comments