Skip to content

Conversation

@MantisClone
Copy link
Member

Adds workflow to automatically add issues and PRs to the project board.

  • Issues: Added when opened
  • PRs without linked issues: Added when opened
  • PRs with linked issues: Not added (the linked issue is tracked instead)

Uses the reusable workflow from RequestNetwork/.github.

@coderabbitai
Copy link

coderabbitai bot commented Jan 17, 2026

Warning

Rate limit exceeded

@MantisClone has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 11 minutes and 55 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

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.

📥 Commits

Reviewing files that changed from the base of the PR and between 75a936a and 4714e8f.

📒 Files selected for processing (1)
  • .github/workflows/auto-project.yml

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@greptile-apps
Copy link

greptile-apps bot commented Jan 17, 2026

Greptile Summary

Adds a GitHub Actions workflow to automatically add new issues and pull requests to the organization's project board. The workflow leverages a reusable workflow from RequestNetwork/.github and properly passes the required PROJECT_TOKEN secret for authentication.

  • Triggers on issues.opened and pull_request.opened events
  • Delegates to centralized reusable workflow for consistency across repositories
  • According to PR description, PRs with linked issues are not added (the linked issue is tracked instead)

Confidence Score: 5/5

  • This PR is safe to merge with no risk
  • The workflow file is simple, well-structured, and follows best practices by using a reusable workflow from the organization's repository. It only adds automation for project board management without modifying any existing functionality. The syntax is correct and the secret passing is properly configured.
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml Adds workflow to automatically add issues and PRs to project board using reusable workflow

Sequence Diagram

sequenceDiagram
    participant User
    participant GitHub
    participant AutoProjectWorkflow
    participant ReusableWorkflow
    participant ProjectBoard
    
    alt Issue opened
        User->>GitHub: Open issue
        GitHub->>AutoProjectWorkflow: Trigger on issues.opened
        AutoProjectWorkflow->>ReusableWorkflow: Call add-to-project.yml with PROJECT_TOKEN
        ReusableWorkflow->>ProjectBoard: Add issue to project board
        ProjectBoard-->>ReusableWorkflow: Confirm addition
    else Pull request opened
        User->>GitHub: Open pull request
        GitHub->>AutoProjectWorkflow: Trigger on pull_request.opened
        AutoProjectWorkflow->>ReusableWorkflow: Call add-to-project.yml with PROJECT_TOKEN
        alt PR without linked issue
            ReusableWorkflow->>ProjectBoard: Add PR to project board
            ProjectBoard-->>ReusableWorkflow: Confirm addition
        else PR with linked issue
            ReusableWorkflow->>ReusableWorkflow: Skip (linked issue tracked)
        end
    end
Loading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: 🆕 New

Development

Successfully merging this pull request may close these issues.

2 participants