ci: replace workflows with canonical templates#6
Conversation
Replace hardcoded version-check + create-release with the canonical templates from indigo-claude-plugin/docs/plugin-dev/workflows/. - Auto-detects bundle name via find (no LogsOverReflector hardcoding) - Uses softprops/action-gh-release@v2 (was v1, deprecated Node 16) - Uses git rev-parse for tag check (was grep — substring false-positive risk) - Tags now v-prefixed (v2026.0.6), per workspace convention Bumps PluginVersion 2026.0.4 → 2026.0.6 (skipping 2026.0.5 to avoid collision with open feature branch fix/reflector-cleanup). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Match canonical update — bundles like HeatmiserNeo.IndigoPlugin (capital I) need case-insensitive find on Linux runners. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Sync to canonical templates' fix: basename suffix-strip was case-sensitive, breaking on bundles with capital-I .IndigoPlugin. Drop the strip entirely; use the bundle name verbatim. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Summary
version-check.yml+create-release.ymlwith the canonical templates fromindigo-claude-plugin.LogsOverReflector.indigoPluginviafind -name '*.indigoPlugin'— no name hardcoding.softprops/action-gh-releasev1 → v2 (v1 runs on deprecated Node 16).git tag -l | grep(substring false-positive risk) togit rev-parse(exact match).v-prefixed (e.g.v2026.0.6) per workspace convention.Why
Workspace-wide rollout to standardize CI across all 11 Indigo plugin repos.
Version
Bumps 2026.0.4 → 2026.0.6 (skips .5 to avoid collision with open branch
fix/reflector-cleanupwhich has 2026.0.5). That branch will need rebase + bump after this lands.Test plan
create-releaseproducesv2026.0.6tag + release withLogsOverReflector.indigoPlugin.zip🤖 Generated with Claude Code