chore: add release-please workflow#4
Conversation
|
Warning Rate limit exceeded@angelxmoreno has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 12 minutes and 1 seconds before requesting another review. ⌛ 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. 📒 Files selected for processing (2)
WalkthroughIntroduces a GitHub Actions workflow (.github/workflows/release.yml) to automate npm releases on pushes to main. It runs Release Please for a Node package and, when a release is created, sets up Node.js 20 and publishes to npm using the NPM_TOKEN secret. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Dev as Developer
participant GH as GitHub Actions
participant RP as Release Please
participant Node as Node Setup (v20)
participant NPM as npm Registry
Dev->>GH: Push to main
GH->>RP: Run Release Please (node package)
alt Release created
RP-->>GH: Release artifacts created
GH->>Node: Setup Node.js 20
GH->>NPM: npm publish (auth: NPM_TOKEN)
NPM-->>GH: Publish result
else No release
RP-->>GH: No new release
GH-->>Dev: Workflow completes without publish
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
✨ Finishing Touches🧪 Generate unit tests
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
Status, Documentation and Community
|
02cbce9 to
4c6b433
Compare
Summary by CodeRabbit