File tree Expand file tree Collapse file tree 2 files changed +58
-0
lines changed Expand file tree Collapse file tree 2 files changed +58
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Jazzy Check Docs
2+
3+ on :
4+ workflow_dispatch :
5+ pull_request :
6+ branches :
7+ - jazzy
8+ paths :
9+ - ' **.rst'
10+ - ' **.md'
11+ - ' **.jpg'
12+ - ' **.jpeg'
13+ - ' **.png'
14+ - ' **.svg'
15+ - ' **.yml'
16+ - ' **.yaml'
17+ - ' !.github/**' # exclude yaml files in .github directory
18+ - ' .github/workflows/jazzy-check-docs.yml'
19+
20+ concurrency :
21+ group : ${{ github.workflow }}-${{ github.ref }}
22+ cancel-in-progress : true
23+
24+ jobs :
25+ check-docs :
26+ name : Check Docs
27+ uses : ros-controls/control.ros.org/.github/workflows/reusable-sphinx-check-single-version.yml@jazzy
28+ with :
29+ REALTIME_TOOLS_PR : ${{ github.ref }}
Original file line number Diff line number Diff line change 1+ name : Rolling Check Docs
2+
3+ on :
4+ workflow_dispatch :
5+ pull_request :
6+ branches :
7+ - master
8+ paths :
9+ - ' **.rst'
10+ - ' **.md'
11+ - ' **.jpg'
12+ - ' **.jpeg'
13+ - ' **.png'
14+ - ' **.svg'
15+ - ' **.yml'
16+ - ' **.yaml'
17+ - ' !.github/**' # exclude yaml files in .github directory
18+ - ' .github/workflows/rolling-check-docs.yml'
19+
20+ concurrency :
21+ group : ${{ github.workflow }}-${{ github.ref }}
22+ cancel-in-progress : true
23+
24+ jobs :
25+ check-docs :
26+ name : Check Docs
27+ uses : ros-controls/control.ros.org/.github/workflows/reusable-sphinx-check-single-version.yml@rolling
28+ with :
29+ REALTIME_TOOLS_PR : ${{ github.ref }}
You can’t perform that action at this time.
0 commit comments