-
-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into temporal_only_current_mapset
- Loading branch information
Showing
477 changed files
with
27,625 additions
and
9,748 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
--- | ||
libraries: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- lib/** | ||
- include/grass/** | ||
- python/** | ||
module: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- db/** | ||
- display/** | ||
- general/** | ||
- imagery/** | ||
- misc/** | ||
- ps/** | ||
- raster/** | ||
- raster3d/** | ||
- scripts/** | ||
- temporal/** | ||
- vector/** | ||
|
||
# Module categories | ||
database: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- db/** | ||
- lib/db/** | ||
- scripts/db.*/** | ||
- '**.sql' | ||
display: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- display/** | ||
- lib/display/** | ||
- scripts/d.*/** | ||
general: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- general/** | ||
- scripts/g.*/** | ||
GUI: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- gui/** | ||
imagery: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- imagery/** | ||
- lib/imagery/** | ||
- scripts/i.*/** | ||
misc: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- misc/** | ||
- scripts/m.*/** | ||
raster: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- raster/** | ||
- lib/raster/** | ||
- scripts/r.*/** | ||
raster3d: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- raster3d/** | ||
- lib/raster3d/** | ||
- scripts/r3.*/** | ||
temporal: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- temporal/** | ||
- lib/temporal/** | ||
- scripts/t.*/** | ||
vector: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- vector/** | ||
- lib/vector/** | ||
- scripts/v.*/** | ||
|
||
# Build, packaging, or OS related | ||
CI: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .github/** | ||
- .travis/** | ||
- binder/** | ||
- .travis.yml | ||
- renovate.json | ||
- .pre-commit-config.yaml | ||
Windows: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- mswindows/** | ||
macOS: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- macosx/** | ||
Linux: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- singularity/** | ||
- rpm/** | ||
docker: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- docker/** | ||
- '**/*Dockerfile*' | ||
- '**/*dockerfile*' | ||
- .dockerignore | ||
|
||
docs: | ||
- all: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- doc/** | ||
- man/** | ||
- '**/*.md' | ||
- '**/*.rst' | ||
- '**/*.html' | ||
- '**/*.dox' | ||
- '**/*.png' | ||
- '**.cff' | ||
- CITING | ||
- CHANGES | ||
- AUTHORS | ||
- NEWS | ||
- TODO | ||
- all-globs-to-all-files: | ||
- '!doc/development/rfc/**' | ||
RFC: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- doc/development/rfc/** | ||
translation: | ||
- changed-files: | ||
- any-glob-to-any-file: locale/** | ||
|
||
# based on file types | ||
Python: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- '**/*.py' | ||
- '**/pyproject.toml' | ||
C: | ||
- changed-files: | ||
- any-glob-to-any-file: '**/*.c' | ||
C++: | ||
- changed-files: | ||
- any-glob-to-any-file: '**/*.cpp' | ||
CSS: | ||
- changed-files: | ||
- any-glob-to-any-file: '**/*.css' | ||
HTML: | ||
- changed-files: | ||
- any-glob-to-any-file: '**/*.html' | ||
JavaScript: | ||
- changed-files: | ||
- any-glob-to-any-file: '**/*.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
name: Formatting Check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
- name: Run clang-format style check for C/C++/Protobuf programs. | ||
uses: jidicula/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.