diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-04-28 13:50:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-28 13:50:05 (GMT) |
commit | 44a803aefb8a2f1177733664dfd3f41823ec3286 (patch) | |
tree | cd36a2d0ba6829732d0528ed6f8fe41d8f5b4804 /.github | |
parent | 41a36efde14a1db65cc8be0ef9de1ec41fe86ed6 (diff) | |
download | hdf5-44a803aefb8a2f1177733664dfd3f41823ec3286.zip hdf5-44a803aefb8a2f1177733664dfd3f41823ec3286.tar.gz hdf5-44a803aefb8a2f1177733664dfd3f41823ec3286.tar.bz2 |
Brings over minor changes in root, bin/, and release_docs (#1699)
Diffstat (limited to '.github')
-rw-r--r-- | .github/FUNDING.yml | 3 | ||||
-rw-r--r-- | .github/workflows/pr-check.yml | 11 |
2 files changed, 12 insertions, 2 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..7c4daaf --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,3 @@ +# These are supported funding model platforms + +custom: "https://hdfgroup.org/about-us/donate-to-the-hdf-group/" diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 65bf42b..5dd923f 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -1,10 +1,17 @@ -name: hdf5 dev CI +name: PR hdf5 dev CI # Controls when the action will run. Triggers the workflow on push or pull request on: pull_request: branches: [ develop, hdf5_1_12, hdf5_1_10, hdf5_1_8 ] - + paths-ignore: + - '.github/**' + - '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: # This workflow contains a single job called "build" |