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 25868fc commit d2c3c32Copy full SHA for d2c3c32
.github/workflows/trigger-test.yml
@@ -0,0 +1,18 @@
1
+name: Trigger Private Repo
2
+on:
3
+ push:
4
+ pull_request:
5
+
6
+jobs:
7
+ trigger:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Trigger private repo workflow
11
+ run: |
12
+ curl -L \
13
+ -X POST \
14
+ -H "Accept: application/vnd.github+json" \
15
+ -H "Authorization: Bearer ${{ secrets.PRIVATE_REPO_PAT }}" \
16
+ -H "X-GitHub-Api-Version: 2022-11-28" \
17
+ https://api.github.com/repos/locusrobotics/locus_orbbec_ros2/dispatches \
18
+ -d '{"event_type":"trigger-from-public","client_payload":{"param1":"value1","param2":"value2"}}'
0 commit comments