-
Notifications
You must be signed in to change notification settings - Fork 92
chore: add auto-project workflow #1680
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
|
Warning Rate limit exceeded
⌛ 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 (1)
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 |
Greptile SummaryAdds a GitHub Actions workflow to automatically add newly opened issues and pull requests to the RequestNetwork project board. The workflow uses a reusable workflow from the RequestNetwork/.github repository and triggers on
Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant GitHub
participant Workflow as auto-project.yml
participant Reusable as add-to-project.yml
participant Project as Project Board
alt Issue Opened
User->>GitHub: Open Issue
GitHub->>Workflow: Trigger (issues:opened)
Workflow->>Reusable: Call reusable workflow
Reusable->>Project: Add issue to project
Project-->>Reusable: Success
else Pull Request Opened
User->>GitHub: Open Pull Request
GitHub->>Workflow: Trigger (pull_request:opened)
Workflow->>Reusable: Call reusable workflow
Reusable->>Reusable: Check for linked issues
alt No linked issues
Reusable->>Project: Add PR to project
Project-->>Reusable: Success
else Has linked issues
Reusable->>Reusable: Skip (issue already tracked)
end
end
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1 file reviewed, 1 comment
Adds workflow to automatically add issues and PRs to the project board.
Uses the reusable workflow from RequestNetwork/.github.