chore: add a release automation workflows#63
Conversation
|
✔️ cf6a91f...147c26f - Conventional commits check succeeded. |
WalkthroughThis PR adds release automation to the hc-spin repository by introducing two new GitHub Actions workflows that implement a two-stage release process. The 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ 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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/workflows/release-publish.yml:
- Line 9: Replace the mutable tag reference to the reusable workflow with an
immutable commit SHA: locate the line containing "uses:
holochain/actions/.github/workflows/nodejs-publish-release.yml@v1.9.0" and swap
the `@v1.9.0` suffix for the full 40-character commit SHA for that target commit
(e.g., @<commit-sha>), ensuring you pick the exact commit corresponding to the
intended release and update the workflow file accordingly so the job "publish"
uses the pinned commit.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 30ee29a4-d24a-4328-9fef-ec44e1e0cf54
📒 Files selected for processing (2)
.github/workflows/release-prepare.yml.github/workflows/release-publish.yml
This uses the new Node.js common workflows from the Holochain actions repo, added in holochain/actions#10. These can't really be tested until they are merged to main.
Closes #62.