Skip to content

Commit

Permalink
Disable some CI checks on docs updates (#2076)
Browse files Browse the repository at this point in the history
* ignore docs/ and **.md

* always trigger python-format
  • Loading branch information
thomas-bc authored Jun 9, 2023
1 parent 5096ad4 commit 49d8e91
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-led-blinker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
branches: [ master, devel ]
pull_request:
branches: [ master, devel ]
paths-ignore:
- 'docs/**'
- '**.md'

jobs:
run:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/build-test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ on:
push:
branches: [ master, devel ]
pull_request:
branches: [ master, devel, release/v3.0.0 ]
branches: [ master, devel, release/v3.0.0 ]
paths-ignore:
- 'docs/**'
- '**.md'

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-test-rpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
branches: [ master, devel ]
pull_request:
branches: [ master, devel, release/v3.0.0 ]
paths-ignore:
- 'docs/**'
- '**.md'
env:
RPI_TOOLCHAIN_DIR: /tmp/rpi-toolchain
DICTIONARY_PATH: build-artifacts/raspberrypi/RPI/dict/RPITopologyAppDictionary.xml
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
branches: [ master, devel ]
pull_request:
branches: [ master, devel, release/v3.0.0 ]
paths-ignore:
- 'docs/**'
- '**.md'

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/codeql-jpl-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
pull_request:
# The branches below must be a subset of the branches above
branches: [ master, devel ]
paths-ignore:
- 'docs/**'
- '**.md'

jobs:
analyze:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/codeql-security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
pull_request:
# The branches below must be a subset of the branches above
branches: [ master, devel ]
paths-ignore:
- 'docs/**'
- '**.md'

jobs:
analyze:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/cppcheck-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
pull_request:
# The branches below must be a subset of the branches above
branches: [ master, devel ]
paths-ignore:
- 'docs/**'
- '**.md'


jobs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/cpplint-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
# The branches below must be a subset of the branches above
branches: [master, devel]
paths-ignore:
- 'docs/**'
- '**.md'

jobs:
cpplint:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/python-format.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Format Python

on: [push, pull_request]
on:
push:
branches: [master, devel]
pull_request:
# The branches below must be a subset of the branches above
branches: [master, devel]

jobs:
format:
name: Format
Expand Down

0 comments on commit 49d8e91

Please sign in to comment.