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 cf36433 commit 82c7979Copy full SHA for 82c7979
.github/workflows/trigger-caraml-doc-sync.yml
@@ -0,0 +1,22 @@
1
+# This workflow triggers sync of docs to caraml-dev/docs
2
+
3
+name: Trigger CaraML Docs Sync
4
5
+on:
6
+ push:
7
+ tags:
8
+ - 'v[0-9]+.[0-9]+.[0-9]+*'
9
10
+jobs:
11
+ trigger-sync:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Trigger Remote Doc Sync Workflow
15
+ uses: caraml-dev/docs/.github/actions/trigger-remote-docs-sync@main
16
+ with:
17
+ module: 'router'
18
+ git_https: 'https://github.com/caraml-dev/turing.git'
19
+ doc_folder: 'docs'
20
+ ref_name: ${{ github.ref_name }}
21
+ ref_type: ${{ github.ref_type }}
22
+ credentials: ${{ secrets.CARAML_SYNC }}
0 commit comments