diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-05 18:57:10 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-05 18:57:10 +0300 |
| commit | d95e004d37ab26bf85b31de77b9357c5a8561f0f (patch) | |
| tree | 345f731631c8d99521bea0e73063c28cbb578e94 /.github/workflows/cgit-ci.yml | |
| parent | 06a08336274b2723333d6bddfb28ae3703d1c286 (diff) | |
| download | Project-Tick-d95e004d37ab26bf85b31de77b9357c5a8561f0f.tar.gz Project-Tick-d95e004d37ab26bf85b31de77b9357c5a8561f0f.zip | |
NOISSUE refactor to update copyright notices and improve workflow scripts
- Updated copyright notices in various files to reflect "Project Tick" instead of "Project Tick Contributors".
- Added a new GitHub Action for packaging source tarballs with multiple formats and GPG signing options.
- Introduced a dependabot configuration for automated dependency updates across various ecosystems.
- Enhanced CI workflows by improving command syntax for better readability and consistency.
- Added checks to skip commit message linting for automated bot PRs (e.g., Dependabot).
- Improved source tree preparation and packaging steps in the meshmc and neozip release workflows.
- Updated documentation to reflect changes in authorship and project information.
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to '.github/workflows/cgit-ci.yml')
| -rw-r--r-- | .github/workflows/cgit-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/cgit-ci.yml b/.github/workflows/cgit-ci.yml index 37241312ef..0f6dfe8b3b 100644 --- a/.github/workflows/cgit-ci.yml +++ b/.github/workflows/cgit-ci.yml @@ -44,10 +44,10 @@ jobs: - name: Build git run: | cd git - make -j$(nproc 2>/dev/null || sysctl -n hw.logicalcpu) prefix=/usr/local NO_GETTEXT=1 + make -j"$(nproc 2>/dev/null || sysctl -n hw.logicalcpu)" prefix=/usr/local NO_GETTEXT=1 - name: Build cgit - run: make -j$(nproc 2>/dev/null || sysctl -n hw.logicalcpu) + run: make -j"$(nproc 2>/dev/null || sysctl -n hw.logicalcpu)" - name: Run tests run: make test || true |
