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
8 changes: 7 additions & 1 deletion .github/workflows/bloom.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: bloom

on: [push, pull_request]
on:
push:
paths-ignore:
- "README.md"
pull_request:
paths-ignore:
- "README.md"

jobs:
build_linux:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: CMake
on:
push:
branches: [ "master" ]
paths-ignore:
- "README.md"
pull_request:
branches: [ "master" ]
paths-ignore:
- "README.md"

jobs:
build:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/cmake-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: CMake (Ubuntu)
on:
push:
branches: [ "master" ]
paths-ignore:
- "README.md"
pull_request:
branches: [ "master" ]
paths-ignore:
- "README.md"

jobs:
build:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/colcon-workspace.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: colcon workspace

on: [push, pull_request]
on:
push:
paths-ignore:
- "README.md"
pull_request:
paths-ignore:
- "README.md"

jobs:
# build on Ubuntu docker images
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/cross-compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: Cross compilation
on:
push:
branches: [ "master" ]
paths-ignore:
- "README.md"
pull_request:
branches: [ "master" ]
paths-ignore:
- "README.md"
workflow_dispatch:

jobs:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/industrial_ci_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
name: ROS-CI

# This determines when this workflow is run
on: [push, pull_request] # on all pushes and PRs
on:
push:
paths-ignore:
- "README.md"
pull_request:
paths-ignore:
- "README.md"

jobs:
CI:
Expand Down
Loading