[ci] Enabled issue autoassignment bots#294
Conversation
|
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: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (4)
✨ 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 |
Code Review SummaryStatus: No Issues Found | Recommendation: Merge The workflows are well-structured and follow GitHub Actions best practices. Good use of concurrency controls, proper permission scoping, and appropriate security checks (e.g., verifying comment author matches issue author). Files Reviewed (4 files)
Reviewed by kimi-k2.5-0127 · 151,644 tokens |
There was a problem hiding this comment.
Pull request overview
Adds four GitHub Actions workflows that delegate to a reusable workflow in openwisp/openwisp-utils to automate issue assignment, PR-issue linking, PR reopening reassignment, and stale PR management.
Changes:
- Add issue assignment bot triggered by issue comments.
- Add PR-issue auto-linking and PR reopen reassignment workflows.
- Add scheduled stale PR management workflow.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/bot-autoassign-issue.yml | Triggers issue assignment bot on issue comments |
| .github/workflows/bot-autoassign-pr-issue-link.yml | Runs PR-issue linking on PR open/reopen/close events |
| .github/workflows/bot-autoassign-pr-reopen.yml | Handles PR reopening and PR comment activity |
| .github/workflows/bot-autoassign-stale-pr.yml | Daily scheduled stale PR cleanup |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Checklist
This PR adds the GitHub Actions workflows to auto-assign issues, manage PR-issue linking, handle PR reopening reassignment, and manage stale PRs.
These workflows check out
openwisp/openwisp-utilsto run the bot Python scripts, ensuring uniform behavior across all repositories.Related to the auto-assignment issue bot implementation.