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 48b9eae commit 68a50f3Copy full SHA for 68a50f3
1 file changed
.github/workflows/ci.yml
@@ -5,6 +5,8 @@ on:
5
branches: [main]
6
push:
7
8
+ repository_dispatch:
9
+ types: [ros2_medkit_updated]
10
11
jobs:
12
lint:
@@ -33,6 +35,13 @@ jobs:
33
35
docker-build:
34
36
runs-on: ubuntu-24.04
37
steps:
38
+ - name: Show triggering source
39
+ if: github.event_name == 'repository_dispatch'
40
+ run: |
41
+ echo "## Triggered by ros2_medkit" >> $GITHUB_STEP_SUMMARY
42
+ echo "- Commit: \`${{ github.event.client_payload.sha }}\`" >> $GITHUB_STEP_SUMMARY
43
+ echo "- Run: ${{ github.event.client_payload.run_url }}" >> $GITHUB_STEP_SUMMARY
44
+
45
- name: Checkout repository
46
uses: actions/checkout@v4
47
0 commit comments