[ci] Enabled issue autoassignment bots#394
[ci] Enabled issue autoassignment bots#394Eeshu-Yadav wants to merge 1 commit intoopenwisp:masterfrom
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 |
a0ced3a to
edb709b
Compare
Code Review SummaryStatus: No Issues Found | Recommendation: Merge These workflow files correctly implement GitHub Actions automation by delegating to the centralized reusable workflow in
Files Reviewed (4 files)
Reviewed by kimi-k2.5-0127 · 66,957 tokens |
There was a problem hiding this comment.
Pull request overview
Adds GitHub Actions workflows to enable OpenWISP’s shared bot automation in this repository (issue auto-assignment, PR↔issue linking, reassignment on PR reopen/activity, and stale PR management) by delegating execution to reusable workflows in openwisp/openwisp-utils.
Changes:
- Added an issue-comment driven workflow to handle issue assignment requests.
- Added
pull_request_target/issue_commentworkflows to manage PR↔issue assignment/linking and reassignment on reopen/activity. - Added a scheduled workflow to manage stale PRs.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 7 comments.
| File | Description |
|---|---|
| .github/workflows/bot-autoassign-stale-pr.yml | Adds scheduled/manual stale PR management via OpenWISP reusable bot workflow. |
| .github/workflows/bot-autoassign-pr-reopen.yml | Adds PR reopen + PR-author activity reassignment automation via reusable bot workflow. |
| .github/workflows/bot-autoassign-pr-issue-link.yml | Adds PR event-driven issue auto-assignment/linking via reusable bot workflow. |
| .github/workflows/bot-autoassign-issue.yml | Adds issue-comment driven assignment bot workflow via reusable bot workflow. |
💡 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.