We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f8fb347 + 530c00b commit bb959b2Copy full SHA for bb959b2
1 file changed
.github/workflows/notify-repo-b.yml
@@ -0,0 +1,19 @@
1
+name: Notify repo B
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - 'code/CM7/Drivers/LIS3DHTR/**'
7
8
+jobs:
9
+ notify:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Trigger repo B workflow
14
+ run: |
15
+ curl -X POST \
16
+ -H "Accept: application/vnd.github+json" \
17
+ -H "Authorization: Bearer ${{ secrets.REPO_B_TRIGGER_TOKEN }}" \
18
+ https://api.github.com/repos/Manwlis/FreeRTOS_LwIP_MQTT/dispatches \
19
+ -d '{"event_type":"sync_shared"}'
0 commit comments