Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 0 additions & 12 deletions .github/workflows/ci-check-docs.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/humble-check-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check Docs - Humble

on:
workflow_dispatch:
pull_request:
branches:
- humble
paths:
- '**.rst'
- '**.md'
- '**.jpg'
- '**.jpeg'
- '**.png'
- '**.svg'
- '**.yml'
- '**.yaml'
- '!.github/**' # exclude yaml files in .github directory
- '.github/workflows/humble-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@humble
with:
GZ_ROS2_CONTROL_PR: ${{ github.ref }}
29 changes: 29 additions & 0 deletions .github/workflows/jazzy-check-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check Docs - Jazzy

on:
workflow_dispatch:
pull_request:
branches:
- jazzy
paths:
- '**.rst'
- '**.md'
- '**.jpg'
- '**.jpeg'
- '**.png'
- '**.svg'
- '**.yml'
- '**.yaml'
- '!.github/**' # exclude yaml files in .github directory
- '.github/workflows/jazzy-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@jazzy
with:
GZ_ROS2_CONTROL_PR: ${{ github.ref }}
29 changes: 29 additions & 0 deletions .github/workflows/kilted-check-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check Docs - Kilted

on:
workflow_dispatch:
pull_request:
branches:
- kilted
paths:
- '**.rst'
- '**.md'
- '**.jpg'
- '**.jpeg'
- '**.png'
- '**.svg'
- '**.yml'
- '**.yaml'
- '!.github/**' # exclude yaml files in .github directory
- '.github/workflows/kilted-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@kilted
with:
GZ_ROS2_CONTROL_PR: ${{ github.ref }}
29 changes: 29 additions & 0 deletions .github/workflows/rolling-check-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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 }}
Loading