[Doc] Add command interface notes #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check Docs - Rolling | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - rolling | |
| paths: | |
| - '**.rst' | |
| - '**.md' | |
| - '**.jpg' | |
| - '**.jpeg' | |
| - '**.png' | |
| - '**.svg' | |
| - '**.yml' | |
| - '**.yaml' | |
| - '!.github/**' # exclude yaml files in .github directory | |
| - '.github/workflows/rolling-check-docs.yml' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-docs: | |
| name: Check Docs | |
| uses: ros-controls/control.ros.org/.github/workflows/reusable-sphinx-check-single-version.yml@rolling | |
| with: | |
| GZ_ROS2_CONTROL_PR: ${{ github.ref }} |