Skip to content

Commit

Permalink
manually trigger CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Jun 12, 2021
1 parent dc9baae commit 58f116a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 38 deletions.
34 changes: 16 additions & 18 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,26 @@ name: DoxyGen build

on:
pull_request:
branches: [master]
types: [opened, reopened]
paths:
- '*.h'
- 'docs/**'
- '!docs/README.md'
- '*.md'
- 'images/**'
- '.github/workflows/doxygen.yml'
- 'Doxyfile'
- 'library.properties' # get lib version from here
- "*.h"
- "docs/**"
- "!docs/README.md"
- "*.md"
- "images/**"
- ".github/workflows/doxygen.yml"
- "Doxyfile"
- "library.properties" # get lib version from here
push:
branches: [master]
paths:
- '*.h'
- 'docs/**'
- '!docs/README.md'
- '*.md'
- 'images/**'
- '.github/workflows/doxygen.yml'
- 'Doxyfile'
- 'library.properties' # get lib version from here
- "*.h"
- "docs/**"
- "!docs/README.md"
- "*.md"
- "images/**"
- ".github/workflows/doxygen.yml"
- "Doxyfile"
- "library.properties" # get lib version from here
release:
branches: [master]
types: [published, edited]
Expand Down
40 changes: 20 additions & 20 deletions .github/workflows/linux_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@ on:
pull_request:
types: [opened, reopened]
paths:
- '*.h'
- '*.cpp'
- 'CMakeLists.txt'
- 'cmake/**'
- 'library.properties' # CMake gets lib info from here
- 'examples_RPi/*'
- '!**Makefile' # old build system is not tested in this workflow
- '**pyRF24Network/setup.py'
- '**pyRF24Network/*.cpp'
- '.github/workflows/build_linux.yml'
- "*.h"
- "*.cpp"
- "CMakeLists.txt"
- "cmake/**"
- "library.properties" # CMake gets lib info from here
- "examples_RPi/*"
- "!**Makefile" # old build system is not tested in this workflow
- "**pyRF24Network/setup.py"
- "**pyRF24Network/*.cpp"
- ".github/workflows/build_linux.yml"
push:
paths:
- '*.h'
- '*.cpp'
- 'CMakeLists.txt'
- 'cmake/**'
- 'library.properties' # CMake gets lib info from here
- 'examples_RPi/**'
- '!**Makefile' # old build system is not tested in this workflow
- '**pyRF24Network/setup.py'
- '**pyRF24Network/*.cpp'
- '.github/workflows/build_linux.yml'
- "*.h"
- "*.cpp"
- "CMakeLists.txt"
- "cmake/**"
- "library.properties" # CMake gets lib info from here
- "examples_RPi/**"
- "!**Makefile" # old build system is not tested in this workflow
- "**pyRF24Network/setup.py"
- "**pyRF24Network/*.cpp"
- ".github/workflows/build_linux.yml"
release:
types: [published, edited]

Expand Down

0 comments on commit 58f116a

Please sign in to comment.