8 Commits

Author SHA1 Message Date
jmiller c14cd0b542 chore: sync pre-release.yml from Template-Generic [skip ci] 2026-07-06 17:03:41 +00:00
jmiller 31e16bace7 chore: sync rc-revert.yml from Template-Generic [skip ci] 2026-07-06 03:49:13 +00:00
jmiller 4612097ab1 chore: sync pr-check.yml from Template-Generic [skip ci] 2026-07-06 03:49:12 +00:00
jmiller 99452da4c9 chore: sync ci-generic.yml from Template-Generic [skip ci] 2026-07-06 03:49:11 +00:00
jmiller 47c3047a5c chore: sync auto-release.yml from Template-Generic [skip ci] 2026-07-06 03:49:10 +00:00
jmiller b3e4dc4d90 Merge pull request 'chore: bump to 1.0.5 [skip ci]' (#14) from chore/npm-version-bump into main
chore: bump to 1.0.5 [skip ci]
2026-07-05 22:50:38 +00:00
jmiller bbf6d089b5 chore: bump to 1.0.5 [skip ci] 2026-07-05 22:50:29 +00:00
jmiller 539fa6c64b Merge chore/normalize-docs: normalize doc/config refs
Universal: Changelog Validation / Validate CHANGELOG.md (push) Failing after 9s
MCP: Standards Compliance / Secret Scanning (push) Successful in 5s
Cascade Main -> Dev / Cascade main -> dev (push) Successful in 16s
MCP: Standards Compliance / License Header Validation (push) Failing after 5s
MCP: Standards Compliance / Repository Structure Validation (push) Failing after 5s
MCP: Standards Compliance / Coding Standards Check (push) Failing after 6s
MCP: Standards Compliance / Workflow Configuration Check (push) Failing after 6s
MCP: Standards Compliance / Documentation Quality Check (push) Successful in 7s
MCP: Standards Compliance / README Completeness Check (push) Failing after 7s
MCP: Standards Compliance / Git Repository Hygiene (push) Successful in 11s
MCP: Standards Compliance / Script Integrity Validation (push) Successful in 13s
Publish to npm / publish (push) Successful in 48s
MCP: Standards Compliance / Line Length Check (push) Failing after 10s
MCP: Standards Compliance / File Naming Standards (push) Successful in 6s
MCP: Standards Compliance / Insecure Code Pattern Detection (push) Successful in 7s
MCP: Standards Compliance / Dead Code Detection (push) Successful in 8s
MCP: Standards Compliance / File Size Limits (push) Successful in 5s
Universal: CodeQL Analysis / Analyze (actions) (push) Failing after 1m24s
MCP: Standards Compliance / Binary File Detection (push) Successful in 6s
MCP: Standards Compliance / TODO/FIXME Tracking (push) Successful in 5s
Universal: CodeQL Analysis / Analyze (javascript) (push) Failing after 1m25s
MCP: Standards Compliance / Broken Link Detection (push) Successful in 7s
MCP: Standards Compliance / API Documentation Coverage (push) Successful in 8s
MCP: Standards Compliance / Version Consistency Check (push) Successful in 1m25s
MCP: Standards Compliance / Accessibility Check (push) Successful in 8s
MCP: Standards Compliance / Performance Metrics (push) Successful in 8s
MCP: Standards Compliance / Enterprise Readiness Check (push) Failing after 5s
MCP: Standards Compliance / Code Duplication Detection (push) Successful in 1m16s
MCP: Standards Compliance / Code Complexity Analysis (push) Successful in 1m17s
MCP: Standards Compliance / Terraform Configuration Validation (push) Successful in 19s
MCP: Standards Compliance / Unused Dependencies Check (push) Successful in 1m34s
MCP: Standards Compliance / Dependency Vulnerability Scanning (push) Successful in 1m44s
MCP: Standards Compliance / Repository Health Check (push) Successful in 1m40s
Universal: Sync Version on Merge / Propagate README version (push) Failing after 1m23s
MCP: Copilot Agent / Run Copilot Coding Agent (pull_request) Failing after 4s
Universal: PR Check / Require Docs Update (pull_request) Has been skipped
Universal: PR Check / Branch Policy (pull_request) Successful in 3s
Universal: PR Check / Wiki Update Reminder (pull_request) Has been skipped
Universal: PR Check / Validate PR (pull_request) Successful in 9s
Universal: PR Check / Secret Scan (pull_request) Successful in 9s
Generic: Project CI / Lint & Validate (pull_request) Successful in 25s
Universal: CodeQL Analysis / Security Scan Summary (push) Has been cancelled
MCP: Standards Compliance / Compliance Summary (push) Has been cancelled
Generic: Project CI / Tests (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Universal: PR Check / Report Issues (pull_request) Has been cancelled
2026-07-05 22:49:46 +00:00
6 changed files with 18 additions and 11 deletions
+1 -1
View File
@@ -382,7 +382,7 @@ jobs:
content = open('CHANGELOG.md').read() content = open('CHANGELOG.md').read()
old = '## [Unreleased]' old = '## [Unreleased]'
new = f'## [Unreleased]\n\n## [{version}] --- {date}' new = f'## [Unreleased]\n\n## [{version}] --- {date}'
content = content.replace(old, new, 1) content = content if ('## [' + version + ']') in content else content.replace(old, new, 1)
open('CHANGELOG.md', 'w').write(content) open('CHANGELOG.md', 'w').write(content)
" "$VERSION" "$DATE" " "$VERSION" "$DATE"
git add CHANGELOG.md git add CHANGELOG.md
+5 -4
View File
@@ -131,10 +131,11 @@ jobs:
test: test:
name: Tests name: Tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: lint # Independent job (no `needs: lint`): the Gitea Actions scheduler does not
# Run only when lint succeeded; always() forces evaluation so a skipped # offer the dependent 2nd job of a needs-chain to runners, so it stalls in
# lint (e.g. template repos) skips this job cleanly instead of hanging. # "waiting" and is reaped by ABANDONED_JOB_TIMEOUT. Guard template repos
if: ${{ always() && needs.lint.result == 'success' }} # directly (same condition lint uses) instead of gating on lint's result.
if: ${{ !startsWith(github.event.repository.name, 'Template-') }}
steps: steps:
- name: Checkout - name: Checkout
+1 -1
View File
@@ -210,7 +210,7 @@ jobs:
- name: Check for merge conflict markers - name: Check for merge conflict markers
run: | run: |
CONFLICTS=$(grep -rn '<<<<<<< \|>>>>>>> \|^=======$' --include='*.php' --include='*.xml' --include='*.css' --include='*.js' --include='*.json' --include='*.md' --include='*.yml' --include='*.yaml' --include='*.ini' --include='*.txt' . 2>/dev/null | grep -v '.git/' || true) CONFLICTS=$(grep -rn '<<<<<<< \|>>>>>>> \|^=======$' --exclude-dir='.git' --exclude-dir='.mokogitea' --include='*.php' --include='*.xml' --include='*.css' --include='*.js' --include='*.json' --include='*.md' --include='*.yml' --include='*.yaml' --include='*.ini' --include='*.txt' . 2>/dev/null | grep -v '.git/' || true)
if [ -n "$CONFLICTS" ]; then if [ -n "$CONFLICTS" ]; then
echo "::error::Merge conflict markers found in source files" echo "::error::Merge conflict markers found in source files"
echo "## Conflict Markers Found" >> $GITHUB_STEP_SUMMARY echo "## Conflict Markers Found" >> $GITHUB_STEP_SUMMARY
+8 -2
View File
@@ -7,7 +7,7 @@
# INGROUP: mokocli.Release # INGROUP: mokocli.Release
# REPO: https://git.mokoconsulting.tech/MokoConsulting/Template-Generic # REPO: https://git.mokoconsulting.tech/MokoConsulting/Template-Generic
# PATH: /.mokogitea/workflows/pre-release.yml # PATH: /.mokogitea/workflows/pre-release.yml
# VERSION: 05.02.00 # VERSION: 05.02.01
# BRIEF: Auto pre-release on push to dev/alpha/beta/rc branches # BRIEF: Auto pre-release on push to dev/alpha/beta/rc branches
name: "Universal: Pre-Release" name: "Universal: Pre-Release"
@@ -162,7 +162,13 @@ jobs:
git add -A git add -A
git diff --cached --quiet || { git diff --cached --quiet || {
git commit -m "chore(version): pre-release bump to ${VERSION} [skip ci]" git commit -m "chore(version): pre-release bump to ${VERSION} [skip ci]"
git push origin HEAD 2>&1 # Push the bump commit, but do NOT fail the release if the target branch
# is protected and the release identity is not on the push allowlist.
# The build proceeds from the in-tree bumped version regardless; if the
# push is rejected, the next run simply re-bumps from the same base.
if ! git push origin HEAD 2>&1; then
echo "::warning::Version-bump commit could not be pushed (protected branch?). Building from in-tree version ${VERSION} anyway."
fi
} }
# Auto-detect element via manifest_element.php # Auto-detect element via manifest_element.php
+1 -1
View File
@@ -3,7 +3,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: GPL-3.0-or-later
# #
# FILE INFORMATION # FILE INFORMATION
# DEFGROUP: Gitea.Workflow # DEFGROUP: MokoGitea.Workflow
# INGROUP: mokocli.Universal # INGROUP: mokocli.Universal
# REPO: https://git.mokoconsulting.tech/MokoConsulting/Template-Generic # REPO: https://git.mokoconsulting.tech/MokoConsulting/Template-Generic
# PATH: /.mokogitea/workflows/rc-revert.yml # PATH: /.mokogitea/workflows/rc-revert.yml
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@mokoconsulting/mcp-mokocrm-api", "name": "@mokoconsulting/mcp-mokocrm-api",
"version": "1.0.4", "version": "1.0.5",
"description": "MCP server for Dolibarr ERP/CRM REST API operations", "description": "MCP server for Dolibarr ERP/CRM REST API operations",
"type": "module", "type": "module",
"main": "dist/index.js", "main": "dist/index.js",