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
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: Jazzy Check Docs

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:
REALTIME_TOOLS_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: Rolling Check Docs

on:
workflow_dispatch:
pull_request:
branches:
- master
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:
REALTIME_TOOLS_PR: ${{ github.ref }}