Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -404,3 +404,22 @@ jobs:
name: ros2_medkit-coverage
fail_ci_if_error: true
verbose: true

notify-demos:
needs: [jazzy-lint, jazzy-test]
if: >-
github.event_name == 'push' &&
github.ref == 'refs/heads/main' &&
needs.jazzy-lint.result == 'success' &&
needs.jazzy-test.result == 'success'
runs-on: ubuntu-latest
# Only Jazzy gates the dispatch. Humble failures do not block demos CI - intentional tradeoff.
permissions: {}
steps:
- name: Trigger selfpatch_demos CI
uses: peter-evans/repository-dispatch@v4
with:
token: ${{ secrets.DEMOS_DISPATCH_TOKEN }}
repository: selfpatch/selfpatch_demos
event-type: ros2_medkit_updated
client-payload: '{"sha":"${{ github.sha }}","run_url":"${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"}'