Skip to content

Conversation

@MantisClone
Copy link
Member

@MantisClone MantisClone commented Jan 17, 2026

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.


Closes RequestNetwork/public-issues#130

@coderabbitai
Copy link
Contributor

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 15 minutes and 50 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 1d74517 and de76489.

📒 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

This PR adds 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 centralized RequestNetwork/.github repository.

  • Triggers on issues.opened and pull_request.opened events
  • Delegates to a reusable workflow that handles the logic for adding items to the project board
  • PRs with linked issues are not added (the linked issue is tracked instead)
  • Requires PROJECT_TOKEN secret to be configured in repository settings

Confidence Score: 4/5

  • This PR is safe to merge with minimal risk - it's a simple automation workflow addition
  • The workflow is straightforward and well-structured. The only consideration is that it references @main branch of the reusable workflow rather than a pinned version, which could introduce unexpected changes if the upstream workflow is modified. Otherwise, this is a low-risk addition that improves project management automation.
  • No files require special attention - ensure PROJECT_TOKEN secret is configured in repository settings

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 GH as GitHub Event
    participant WF as Auto-Project Workflow
    participant RW as Reusable Workflow
    participant PB as Project Board
    
    alt Issue Opened
        GH->>WF: Trigger on issue opened
    else PR Opened
        GH->>WF: Trigger on PR opened
    end
    
    WF->>RW: Call RequestNetwork/.github workflow
    RW->>RW: Check if PR has linked issue
    
    alt PR without linked issue OR is an issue
        RW->>PB: Add to project board
        PB-->>RW: Success
    else PR with linked issue
        RW->>RW: Skip (linked issue tracked instead)
    end
    
    RW-->>WF: Complete
    WF-->>GH: Workflow finished
Loading

Copy link

@greptile-apps greptile-apps bot left a 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

Edit Code Review Agent Settings | Greptile

@MantisClone MantisClone merged commit 9ee1031 into main Jan 17, 2026
11 checks passed
@MantisClone MantisClone deleted the chore/add-auto-project-workflow branch January 17, 2026 20:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Chore - Deploy auto-project workflow to all tracked repos

2 participants