diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-12-12 15:32:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 15:32:38 (GMT) |
commit | 1dae8c805c61039b7f0c53021d0b828026077eba (patch) | |
tree | e4abb79b874f17777edd6694d5ca1c5d8aa756cd /.github/workflows | |
parent | 1da36c90b636f6cd1889338a61602582e5187f00 (diff) | |
download | hdf5-1dae8c805c61039b7f0c53021d0b828026077eba.zip hdf5-1dae8c805c61039b7f0c53021d0b828026077eba.tar.gz hdf5-1dae8c805c61039b7f0c53021d0b828026077eba.tar.bz2 |
1.12 h5repack should only print if verbose (#2274)
* h5repack should only print if verbose
Also chage dump test to use long option
* Add note
* Update yaml workflows
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/clang-format-check.yml | 2 | ||||
-rw-r--r-- | .github/workflows/clang-format-fix.yml | 2 | ||||
-rw-r--r-- | .github/workflows/codespell.yml | 2 | ||||
-rw-r--r-- | .github/workflows/main.yml | 13 |
4 files changed, 10 insertions, 9 deletions
diff --git a/.github/workflows/clang-format-check.yml b/.github/workflows/clang-format-check.yml index 2d7943c..e8251f2 100644 --- a/.github/workflows/clang-format-check.yml +++ b/.github/workflows/clang-format-check.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, 'skip-ci')" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run clang-format style check for C and Java programs. uses: DoozyX/clang-format-lint-action@v0.13 with: diff --git a/.github/workflows/clang-format-fix.yml b/.github/workflows/clang-format-fix.yml index a390a8b..c1110cf 100644 --- a/.github/workflows/clang-format-fix.yml +++ b/.github/workflows/clang-format-fix.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, 'skip-ci')" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run clang-format style check for C and Java programs. uses: DoozyX/clang-format-lint-action@v0.13 with: diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 6b7960a..a281fc7 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -8,7 +8,7 @@ jobs: name: Check for spelling errors runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: codespell-project/actions-codespell@master with: skip: ./bin/trace,./hl/tools/h5watch/h5watch.c,./tools/test/h5jam/tellub.c,./config/sanitizer/LICENSE diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5d3e14d..c112a1d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,12 +6,13 @@ on: push: branches: [ develop, hdf5_1_12, hdf5_1_10, hdf5_1_8 ] paths-ignore: - - '.github/**' - - 'doc/**' - - 'release_docs/**' - - 'ACKNOWLEDGEMENTS' - - 'COPYING**' - - '**.md' + - '.github/CODEOWNERS' + - '.github/FUNDING.yml' + - 'doc/**' + - 'release_docs/**' + - 'ACKNOWLEDGEMENTS' + - 'COPYING**' + - '**.md' # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: |