PR #10 fixed the `.github/` → `.gitea/` rename, but the path filters
still listed individual workflow files. Any future workflow addition
(like `sop-checklist-gate.yml` in PR #8) silently bypasses CI
because neither `ci.yml` nor `release.yml` matches the path filter.
Fix: use `.gitea/workflows/*.yml` and `.gitea/workflows/*.yaml` glob
patterns in both ci.yml and release.yml, plus explicit coverage of
`.gitea/scripts/**` and `.gitea/sop-checklist-config.*` so changes
to CI scripts and config also run Go tests.
Cross-repo equivalent of:
molecule-core #345, molecule-mcp-server #9
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Both workflow files referenced .github/workflows/ci.yml and
.github/workflows/release.yml in their path filters, but the actual
workflow files live under .gitea/workflows/. The mismatch meant CI never
triggered on changes to the workflow files themselves, and never triggered
on any PR (which doesn't touch Go code but does touch workflow files).
Fix: replace .github/workflows/ references with .gitea/workflows/.
Also added .gitea/workflows/release.yml to ci.yml's path filter so
changes to the release workflow also run the CI test job.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>