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
27 changes: 6 additions & 21 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,38 +1,21 @@
# This is a comment.
# Each line is a file pattern followed by one or more owners.

# These owners will be the default owners for everything in the repo.
# Unless a later match takes precedence, @global-owner1 and @global-owner2
# will be requested for review when someone opens a pull request.
# * @global-owner1 @global-owner2

# Order is important; the last matching pattern takes the most precedence.
# When someone opens a pull request that only modifies JS files, only @js-owner
# and not the global owner(s) will be requested for a review.
# *.js @js-owner

# You can also use email addresses if you prefer. They'll be used to look up
# users just like we do for commit author emails.
# docs/* docs@example.com
####################
# Global defaults #
####################

* @lesserwhirls

#####################
# top level modules #
#####################

httpservices/** @DennisHeimbigner @lesserwhirls
netcdf4/** @DennisHeimbigner @lesserwhirls
# None at this time

###########################################
# classpath / not module specific matches #
###########################################

**/iosp/nids/** @dopplershift @lesserwhirls

**/opendap/** @DennisHeimbigner @lesserwhirls
**/dap4/** @DennisHeimbigner @lesserwhirls

######################
# general file types #
######################
Expand All @@ -43,3 +26,5 @@ netcdf4/** @DennisHeimbigner @lesserwhirls
####################
# individual files #
####################

# None at this time
6 changes: 5 additions & 1 deletion .github/workflows/deps.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
on: [pull_request]
on:
pull_request:

permissions:
contents: read

jobs:
check-dependency-availability:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docs-tutorials.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
on:
pull_request:

permissions:
contents: read

jobs:
check-doc-build:
name: netCDF-Java Documentation Code Deprecation Check
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
- 'docs/build.gradle'
- 'gradle/**'

permissions:
contents: read

jobs:
check-doc-build:
name: netCDF-Java Documentation Build Check
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/libaec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ name: libaec build using CMake on multiple platforms
on:
workflow_dispatch:

permissions:
contents: read

jobs:
build:
strategy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/libblosc2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: C-Blosc2 build using CMake on multiple platforms
on:
workflow_dispatch:

permissions:
contents: read

jobs:
build:
strategy:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
on: [pull_request]
on:
pull_request:

permissions:
contents: read

jobs:
check-style:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-native-compression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- 'native-compression/build.gradle'
- '.github/workflows/test-native-compression.yml'

permissions:
contents: read

jobs:
tests:
strategy:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
on: [pull_request]
on:
pull_request:

permissions:
contents: read

jobs:
netcdf-java-tests:
Expand Down
Loading