diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-10-01 18:46:22 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-10-01 18:46:45 (GMT) |
commit | 95bc5fa9e2abd171af9bf5a4ef942fe62615516c (patch) | |
tree | 7d237c7e82b13d1a7d639fdab379695fccd59903 /.github | |
parent | aa6aad8e8eb3eb72e9cb1a8f84a4d5bc46c29c67 (diff) | |
download | hdf5-95bc5fa9e2abd171af9bf5a4ef942fe62615516c.zip hdf5-95bc5fa9e2abd171af9bf5a4ef942fe62615516c.tar.gz hdf5-95bc5fa9e2abd171af9bf5a4ef942fe62615516c.tar.bz2 |
Add option to github actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/clang-format-check.yml | 3 | ||||
-rw-r--r-- | .github/workflows/main.yml | 8 |
2 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/clang-format-check.yml b/.github/workflows/clang-format-check.yml index 5b5222b..62dcb08 100644 --- a/.github/workflows/clang-format-check.yml +++ b/.github/workflows/clang-format-check.yml @@ -1,9 +1,10 @@ name: clang-format Check -on: [push, pull_request] +on: [workflow_dispatch, push, pull_request] jobs: formatting-check: name: Formatting Check runs-on: ubuntu-latest + if: "!contains(github.event.head_commit.message, 'skip-ci')" steps: - uses: actions/checkout@v2 - name: Run clang-format style check for C programs. diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 355e2e6..6dad657 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,9 +2,14 @@ name: hdf5 dev CI # Controls when the action will run. Triggers the workflow on push or pull request on: + workflow_dispatch: push: branches: [ develop, hdf5_1_12, hdf5_1_10, hdf5_1_8 ] - + paths-ignore: + - '.github/**' + - 'doc/**' + - 'release_docs/**' + # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build" @@ -70,6 +75,7 @@ jobs: name: ${{ matrix.name }} # The type of runner that the job will run on runs-on: ${{ matrix.os }} + if: "!contains(github.event.head_commit.message, 'skip-ci')" # Steps represent a sequence of tasks that will be executed as part of the job steps: |