We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf2705a commit 0ef85acCopy full SHA for 0ef85ac
.github/workflows/trigger-docs-sync.yml
@@ -0,0 +1,18 @@
1
+name: Trigger Docs Sync
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ trigger-sync:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Trigger docs repo sync
13
+ run: |
14
+ curl -X POST \
15
+ -H "Accept: application/vnd.github.v3+json" \
16
+ -H "Authorization: token ${{ secrets.DOCS_REPO_TOKEN }}" \
17
+ https://api.github.com/repos/Lightprotocol/docs/dispatches \
18
+ -d '{"event_type":"sync-examples"}'
0 commit comments